11 lines
214 B
CSS
11 lines
214 B
CSS
.icons {
|
|
@apply flex space-x-1 mx-2 transition-colors duration-100 text-gray-400;
|
|
|
|
& > span {
|
|
@apply px-1 py-px cursor-pointer hover:text-gray-50;
|
|
}
|
|
|
|
& svg {
|
|
@apply w-4 h-4;
|
|
}
|
|
}
|