mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
BS5 CMS migration - Add border radius on images option to CMS (#20659)
* introducing new classes for border radius * adding if else for conditionals GitOrigin-RevId: dae2a11e3ba98801d9559127f93af2dbe06a1d89
This commit is contained in:
parent
610e3839ae
commit
ecbafcfbe8
1 changed files with 18 additions and 0 deletions
|
@ -1,3 +1,21 @@
|
|||
.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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue