mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
ecbafcfbe8
* 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);
|
|
}
|
|
}
|