26 lines
445 B
SCSS
26 lines
445 B
SCSS
.navbar {
|
|
@apply bg-transparent py-0 shadow-none px-0;
|
|
|
|
&__inner {
|
|
@apply border-b border-gray-200 dark:border-gray-800 bg-white/80 dark:bg-[#09090B]/50 backdrop-blur-md flex items-center h-14 px-4 lg:px-8 relative;
|
|
}
|
|
|
|
&__logo {
|
|
@apply flex items-center;
|
|
}
|
|
|
|
&__brand {
|
|
&:hover {
|
|
@apply dark:text-white text-black;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
font-size: 18px;
|
|
}
|
|
|
|
[class*='searchBox_'] {
|
|
display: none;
|
|
}
|
|
}
|