13 lines
222 B
CSS
13 lines
222 B
CSS
|
@layer components {
|
||
|
.link {
|
||
|
@apply flex gap-1 font-semibold italic;
|
||
|
|
||
|
& > i {
|
||
|
@apply flex items-center;
|
||
|
|
||
|
& > svg {
|
||
|
@apply scale-75;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|