mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-29 14:00:05 +02:00

* introducing new classes for border radius * adding if else for conditionals GitOrigin-RevId: dae2a11e3ba98801d9559127f93af2dbe06a1d89
21 lines
338 B
SCSS
21 lines
338 B
SCSS
.img-rounded {
|
|
border-radius: var(--border-radius-large);
|
|
}
|
|
|
|
.images-border-radius-base {
|
|
img {
|
|
border-radius: var(--border-radius-base);
|
|
}
|
|
}
|
|
|
|
.images-border-radius-medium {
|
|
img {
|
|
border-radius: var(--border-radius-medium);
|
|
}
|
|
}
|
|
|
|
.images-border-radius-large {
|
|
img {
|
|
border-radius: var(--border-radius-large);
|
|
}
|
|
}
|