mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-14 14:57:00 +10:00
21 lines
396 B
CSS
21 lines
396 B
CSS
.list-item {
|
|
@apply flex items-center justify-between border-t border-primary-200 px-6 py-5;
|
|
}
|
|
|
|
.list-item:first-child {
|
|
@apply border-t-0;
|
|
}
|
|
|
|
.menu {
|
|
@apply opacity-0;
|
|
@apply transition-opacity duration-200 ease-in-out;
|
|
}
|
|
|
|
.list-item:hover .menu {
|
|
@apply opacity-100;
|
|
@apply transition-opacity duration-200 ease-in-out;
|
|
}
|
|
|
|
.toggle-button {
|
|
@apply flex items-center justify-center
|
|
} |