diff options
author | Zero~Informatique | 2019-12-22 07:40:55 +0100 |
---|---|---|
committer | Zero~Informatique | 2019-12-22 07:40:55 +0100 |
commit | dc251fffc2998f1cf4f8e9631928c4b92ac0d90e (patch) | |
tree | 2d0fbf73d63ce2c1f02bde7385688c45eb2a260a /viewer/src/assets/scss/global.scss | |
parent | 65465dd7d76b5729b62e39711004529e8d444241 (diff) | |
download | ldgallery-dc251fffc2998f1cf4f8e9631928c4b92ac0d90e.tar.gz |
viewer: Implemented the search by tags. Pushed the special urls to ENV.
Diffstat (limited to 'viewer/src/assets/scss/global.scss')
-rw-r--r-- | viewer/src/assets/scss/global.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/viewer/src/assets/scss/global.scss b/viewer/src/assets/scss/global.scss index 0bfeab9..5d12976 100644 --- a/viewer/src/assets/scss/global.scss +++ b/viewer/src/assets/scss/global.scss | |||
@@ -12,3 +12,14 @@ | |||
12 | .nowrap { | 12 | .nowrap { |
13 | white-space: nowrap; | 13 | white-space: nowrap; |
14 | } | 14 | } |
15 | |||
16 | .flex { | ||
17 | display: flex; | ||
18 | } | ||
19 | .flex-column { | ||
20 | display: flex; | ||
21 | flex-direction: column; | ||
22 | } | ||
23 | .flex-center { | ||
24 | align-items: center; | ||
25 | } | ||