18 lines
231 B
CSS
18 lines
231 B
CSS
|
img {
|
||
|
&.with-border {
|
||
|
@apply border border-solid border-grey-light;
|
||
|
}
|
||
|
|
||
|
&.with-padding {
|
||
|
@apply p-1;
|
||
|
}
|
||
|
|
||
|
&.avatar {
|
||
|
@apply border p-1 rounded-full;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
svg {
|
||
|
fill: currentColor;
|
||
|
}
|