From 3e22d1b10a4bd2b9e998aaaf25b388377b3953da Mon Sep 17 00:00:00 2001 From: Anna Tsyganova Date: Mon, 15 Aug 2022 17:11:26 +0300 Subject: Fix button link --- src/assets/styles/bmc/_sila/_base.scss | 21 ++++++++++++--------- src/assets/styles/bmc/_sila/_buttons.scss | 2 ++ 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/src/assets/styles/bmc/_sila/_base.scss b/src/assets/styles/bmc/_sila/_base.scss index cc01b569..fc8365d8 100644 --- a/src/assets/styles/bmc/_sila/_base.scss +++ b/src/assets/styles/bmc/_sila/_base.scss @@ -1,11 +1,10 @@ - // // Scrollbars: // /* W3C standard: Firefox only */ * { scrollbar-width: thin; - scrollbar-color: rgba(12,32,64,.7) transparent; + scrollbar-color: rgba(12, 32, 64, 0.7) transparent; } /* For Chrome/Edge/Safari */ @@ -26,7 +25,7 @@ } *::-webkit-scrollbar-thumb { - background-color: rgba(12,32,64,.7); + background-color: rgba(12, 32, 64, 0.7); border-radius: 2px; border: 2px solid transparent; } @@ -70,7 +69,8 @@ h5, } h6, -.h6, label { +.h6, +label { font-size: 0.825rem !important; font-weight: 500; line-height: 1.2; @@ -80,7 +80,7 @@ h6, font-size: 1.4rem !important; } -.nav-link--current{ +.nav-link--current { background-color: $red-light-background !important; color: $red !important; &:hover, @@ -90,12 +90,15 @@ h6, } } -.btn-link:active, .nav-link:active { +.btn-link:active, +.nav-link:active { background-color: $red-light-background !important; color: $red !important; } -.app-header .navbar-text, .app-header .nav-link, .app-header .btn-link { +.app-header .navbar-text, +.app-header .nav-link, +.app-header .btn-link { &:hover { background-color: $red-40 !important; border-radius: $border-radius; @@ -112,7 +115,7 @@ h6, .header-nav { .nav-link { display: flex; - border-radius: 8px !important; + border-radius: $border-radius !important; .status-icon { margin-top: -2px; margin-right: 5px; @@ -130,7 +133,7 @@ h6, .btn-link { display: flex; - border-radius: 8px !important; + border-radius: $border-radius !important; .status-icon { margin-top: -2px; margin-right: 5px; diff --git a/src/assets/styles/bmc/_sila/_buttons.scss b/src/assets/styles/bmc/_sila/_buttons.scss index f31a8657..49d8e642 100644 --- a/src/assets/styles/bmc/_sila/_buttons.scss +++ b/src/assets/styles/bmc/_sila/_buttons.scss @@ -134,6 +134,8 @@ .btn-link { color: $text-primary; text-decoration: none !important; + border-radius: $border-radius; + margin-right: 5px; &:hover { background-color: gray("200"); color: theme-color("primary"); -- cgit v1.2.3