diff --git a/frappe/public/scss/page-builder.scss b/frappe/public/scss/page-builder.scss index 8ba894ccf8..f792209c24 100644 --- a/frappe/public/scss/page-builder.scss +++ b/frappe/public/scss/page-builder.scss @@ -156,13 +156,6 @@ } .nav-tabs { - .nav-link.active, - .nav-item.show .nav-link { - color: darken($primary, 5%); - background-color: #fff; - border-bottom: 2px solid $primary; - } - .nav-link { color: $gray-700; font-weight: 500; @@ -174,6 +167,13 @@ color: $primary; } } + + .nav-link.active, + .nav-item.show .nav-link { + color: darken($primary, 5%); + background-color: #fff; + border-bottom: 2px solid $primary; + } } .section-markdown > .from-markdown { diff --git a/frappe/public/scss/website.scss b/frappe/public/scss/website.scss index 4fbd57bc0b..30781c52c1 100644 --- a/frappe/public/scss/website.scss +++ b/frappe/public/scss/website.scss @@ -55,6 +55,14 @@ } } +.dropdown-menu { + padding: 0.25rem; +} + +.dropdown-item { + border-radius: $dropdown-border-radius; +} + .navbar.bg-dark { .dropdown-menu { font-size: 0.75rem; @@ -85,14 +93,6 @@ } } -.dropdown-menu { - padding: 0.25rem; -} - -.dropdown-item { - border-radius: $dropdown-border-radius; -} - .input-dark { background-color: $dark; border-color: darken($primary, 40%); @@ -137,6 +137,16 @@ a.card { height: 2rem; } +.footer-link, .footer-child-item a { + font-weight: 500; + color: $gray-900; + + &:hover { + color: $primary; + text-decoration: none; + } +} + .footer-col-left, .footer-col-right { padding-top: 1rem; padding-bottom: 1rem; @@ -160,16 +170,6 @@ a.card { } } -.footer-link, .footer-child-item a { - font-weight: 500; - color: $gray-900; - - &:hover { - color: $primary; - text-decoration: none; - } -} - .footer-group-label { color: $text-muted; }