diff options
author | Marvin Borner | 2019-03-05 14:47:08 +0100 |
---|---|---|
committer | Marvin Borner | 2019-03-05 14:47:08 +0100 |
commit | e7cf873d01e746e2706353fb89d139b6c52876a6 (patch) | |
tree | 74fd64944104c5b5ad77db071ce6d614ea830300 /public/styles/style.sass | |
parent | 324b93f7efc5003a208ac63853b18a47398cb70a (diff) |
Improved frontend colors
Diffstat (limited to 'public/styles/style.sass')
-rw-r--r-- | public/styles/style.sass | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/public/styles/style.sass b/public/styles/style.sass index 34768fa..8a9eaf4 100644 --- a/public/styles/style.sass +++ b/public/styles/style.sass @@ -9,7 +9,7 @@ html, body height: 100% !important width: 100% !important overflow: hidden !important - background-color: #23272a !important + background-color: $dark-gray !important .chat display: none @@ -38,7 +38,7 @@ html, body .swal-modal, .swal-title, .swal-text, .swal-icon--success__hide-corners, .swal-icon--success:after, .swal-icon--success:before color: #fff - background: #293034 + background: $gray .swal-icon--success__line background-color: #00940a !important @@ -53,6 +53,9 @@ html, body border-radius: 100% transition: background-color .3s linear +.is-dark + background-color: $gray + .ui-autocomplete z-index: 10002 @@ -60,8 +63,8 @@ html, body width: 100% padding-right: 50px color: #fff - background-color: #2d3338 - border-color: #2d3338 + background-color: $gray + border-color: $gray .message-input::placeholder color: #909090 |