diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-28 14:22:49 +0200 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-04-28 14:22:49 +0200 |
commit | adbd70386b4fa13c940eed643cd1b252b5243051 (patch) | |
tree | da7f4484fc97aaba340d4125517ee25fc73018f2 /frontend/src/styles | |
parent | 98d3f4dedaabf62213b95dd8e7b67f9e8ab99006 (diff) |
Redizajn login modala uradjen.
Diffstat (limited to 'frontend/src/styles')
-rw-r--r-- | frontend/src/styles/helper.css | 8 | ||||
-rw-r--r-- | frontend/src/styles/theme.css | 5 |
2 files changed, 13 insertions, 0 deletions
diff --git a/frontend/src/styles/helper.css b/frontend/src/styles/helper.css index ef875069..55b0967e 100644 --- a/frontend/src/styles/helper.css +++ b/frontend/src/styles/helper.css @@ -128,4 +128,12 @@ width: 150px; height: 150px; margin: auto; +} + +.close-button { + background-color: none; + color: white; + position: absolute; + top: 5px; + right: 5px; }
\ No newline at end of file diff --git a/frontend/src/styles/theme.css b/frontend/src/styles/theme.css index 17a433c6..c517e885 100644 --- a/frontend/src/styles/theme.css +++ b/frontend/src/styles/theme.css @@ -9,6 +9,7 @@ --ns-bg-dark-50: rgba(0, 65, 101, 0.5); --offwhite: #dfd7d7; --ns-warn: #f9b7b7; + --ns-alt: #002b49; } body { @@ -20,6 +21,10 @@ body { background-color: var(--ns-bg-light-30) !important; } +.bg-alt { + background-color: var(--ns-alt); +} + .ns-border-primary { border: 1px solid var(--ns-primary); } |