| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- .grw-navbar {
- top: -$grw-navbar-height !important;
- max-height: $grw-navbar-height + $grw-navbar-border-width;
- border-top: 0;
- border-right: 0;
- border-bottom: $grw-navbar-border-width solid;
- border-left: 0;
- .grw-app-title {
- @include variable-font-size(24px);
- }
- .grw-navbar-search {
- position: absolute;
- left: 50%;
- transform: translate(-50%, 0%);
- }
- .nav-link,
- .nav-item.confidential {
- display: flex;
- align-items: center;
- min-height: $grw-navbar-height;
- padding: 0 1rem;
- }
- .nav-link {
- &:hover {
- background: rgba(0, 0, 0, 0.1);
- }
- &:focus {
- background: rgba(0, 0, 0, 0);
- }
- }
- .nav-item.confidential {
- :not(i) {
- @include variable-font-size(14px);
- }
- @include media-breakpoint-only(md) {
- max-width: 100px;
- }
- max-width: 120px;
- max-height: $grw-navbar-height;
- overflow: hidden;
- background: rgba(0, 0, 0, 0.2);
- }
- .grw-personal-dropdown {
- .dropdown-menu {
- min-width: 15rem;
- .grw-email-sm {
- font-size: 0.75em;
- }
- .grw-icon-container svg {
- width: 18px;
- height: 18px;
- }
- }
- }
- }
- .grw-navbar-bottom {
- height: $grw-navbar-bottom-height;
- // apply transition
- transition-property: bottom;
- @include apply-navigation-transition();
- &.grw-navbar-bottom-drawer-opened {
- bottom: -$grw-navbar-bottom-height;
- }
- }
- .grw-custom-nav {
- .nav-title {
- flex-wrap: nowrap;
- }
- .nav-link {
- padding: 1rem 1.5rem;
- svg {
- width: 17px;
- height: 17px;
- margin-right: 5px;
- vertical-align: text-bottom;
- }
- }
- .grw-nav-slide-hr {
- border-top: 0rem;
- border-bottom: 3px solid;
- transition: 0.3s ease-in-out;
- }
- }
|