15 lines
225 B
SCSS
15 lines
225 B
SCSS
@use "catppuccin" as theme;
|
|
|
|
.m {
|
|
&t {
|
|
&-1 { margin-top: .5rem; }
|
|
}
|
|
}
|
|
|
|
.t {
|
|
&-red { color: theme.$red; }
|
|
&-orange { color: theme.$peach; }
|
|
&-yellow { color: theme.$yellow; }
|
|
&-green { color: theme.$green; }
|
|
}
|