| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- .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-navigation {
- .grw-nav-slide-hr {
- border-bottom: 2px solid;
- transition: 0.3s ease-in-out;
- }
- .nav-link svg {
- width: 17px;
- height: 17px;
- margin-right: 5px;
- }
- }
|