mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-15 17:21:35 +10:00
18 lines
333 B
CSS
18 lines
333 B
CSS
.container {
|
|
@apply flex items-center justify-between border-t border-secondary px-6 py-5;
|
|
}
|
|
|
|
.container:first-child {
|
|
@apply border-t-0;
|
|
}
|
|
|
|
.menu {
|
|
@apply opacity-0;
|
|
@apply transition-opacity duration-200 ease-in-out;
|
|
}
|
|
|
|
.container:hover .menu {
|
|
@apply opacity-100;
|
|
@apply transition-opacity duration-200 ease-in-out;
|
|
}
|