mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
18 lines
259 B
SCSS
18 lines
259 B
SCSS
.container {
|
|
@apply flex items-center justify-between;
|
|
|
|
h1 {
|
|
@apply text-2xl;
|
|
}
|
|
|
|
.actions {
|
|
@apply flex gap-2 opacity-75 transition-opacity lg:opacity-50 dark:lg:opacity-25;
|
|
}
|
|
|
|
&:hover {
|
|
.actions {
|
|
@apply opacity-75;
|
|
}
|
|
}
|
|
}
|