22 lines
353 B
CSS
22 lines
353 B
CSS
header {
|
|
@apply relative z-50;
|
|
}
|
|
|
|
.website_logo {
|
|
@apply w-72 h-auto;
|
|
}
|
|
|
|
.tools-container {
|
|
@apply flex-row items-center gap-4;
|
|
button {
|
|
@apply flex flex-col items-center gap-4 text-lg;
|
|
&:hover {
|
|
@apply underline underline-offset-8 decoration-1;
|
|
}
|
|
|
|
img {
|
|
@apply filter-white w-6 h-6;
|
|
}
|
|
}
|
|
}
|