28 lines
563 B
CSS
28 lines
563 B
CSS
.menu-mobile-brand {
|
|
@apply bg-primary text-white pb-8;
|
|
|
|
@screen lg {
|
|
@apply hidden;
|
|
}
|
|
|
|
#mobile-menu-toggle {
|
|
@apply underline underline-offset-4;
|
|
}
|
|
&__inner-elements {
|
|
@apply flex justify-between items-center px-6 gap-12;
|
|
}
|
|
|
|
.website_logo {
|
|
@apply shrink;
|
|
}
|
|
.tools-container {
|
|
@apply flex w-fit gap-2;
|
|
|
|
.search-button,
|
|
.subscribe-button {
|
|
@apply w-6 h-6 border-2 flex border-white rounded-full p-2 justify-center items-center shrink-0;
|
|
box-sizing: content-box;
|
|
}
|
|
}
|
|
}
|