diff options
| author | Kana <[email protected]> | 2020-12-24 21:41:24 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-24 21:41:24 +0900 |
| commit | 2412a60bd4cb2364a477a3af79a8c6dcb6b0ddab (patch) | |
| tree | dbf2b2cad342f31849a62089dedd40165758af86 /src/site/constants | |
| parent | Enable deleting files with the API key (diff) | |
| parent | bug: fix showlist resetting itself every time the page is changed (diff) | |
| download | host.fuwn.me-2412a60bd4cb2364a477a3af79a8c6dcb6b0ddab.tar.xz host.fuwn.me-2412a60bd4cb2364a477a3af79a8c6dcb6b0ddab.zip | |
Merge pull request #228 from Zephyrrus/begone_trailing_commas
Merge own dev branch into main dev branch
Diffstat (limited to 'src/site/constants')
| -rw-r--r-- | src/site/constants/alertTypes.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/site/constants/alertTypes.js b/src/site/constants/alertTypes.js new file mode 100644 index 0000000..458a739 --- /dev/null +++ b/src/site/constants/alertTypes.js @@ -0,0 +1,10 @@ +export default { + PRIMARY: 'is-primary', + INFO: 'is-info', + SUCCESS: 'is-success', + WARNING: 'is-warning', + ERROR: 'is-danger', + DARK: 'is-dark', + LIGHT: 'is-light', + WHITE: 'is-white' +}; |