summaryrefslogtreecommitdiffstats
path: root/webapp/sass/components/_error-bar.scss
diff options
context:
space:
mode:
authorAsaad Mahmood <asaad@spinpunch.com>2016-03-16 20:31:21 +0500
committerAsaad Mahmood <asaad@spinpunch.com>2016-03-17 05:42:38 +0500
commitf600b1dc2b39ff7b2b3d8450cba43ebb643adddd (patch)
treef42f5ec434f7517c828ae618fc51e2cc99f0aa5f /webapp/sass/components/_error-bar.scss
parent809779a87f4380b6802314271b06540a31b83f53 (diff)
downloadchat-f600b1dc2b39ff7b2b3d8450cba43ebb643adddd.tar.gz
chat-f600b1dc2b39ff7b2b3d8450cba43ebb643adddd.tar.bz2
chat-f600b1dc2b39ff7b2b3d8450cba43ebb643adddd.zip
Updating asss lint stuff with other scss improvements
Diffstat (limited to 'webapp/sass/components/_error-bar.scss')
-rw-r--r--webapp/sass/components/_error-bar.scss23
1 files changed, 11 insertions, 12 deletions
diff --git a/webapp/sass/components/_error-bar.scss b/webapp/sass/components/_error-bar.scss
index 2b74a33ae..cda7d25bd 100644
--- a/webapp/sass/components/_error-bar.scss
+++ b/webapp/sass/components/_error-bar.scss
@@ -1,29 +1,28 @@
@charset 'UTF-8';
.error-bar {
- background-color: #09f;
- text-align: center;
- position: relative;
- color: #fff;
+ background-color: darken($primary-color, 5%);
+ color: $white;
+ padding: 5px 30px;
position: absolute;
+ text-align: center;
top: 0;
width: 100%;
z-index: 9999;
- padding: 5px 30px;
&__close {
- position: absolute;
- right: 0;
- top: 0;
- color: #fff;
+ color: $white;
+ font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-weight: 600;
- text-decoration: none;
padding: 0 10px;
- font-family: 'Open Sans', sans-serif;
+ position: absolute;
+ right: 0;
+ text-decoration: none;
+ top: 0;
&:hover {
- color: #fff;
+ color: $white;
text-decoration: none;
}
}