[simple theme] dynamic border radius in CSS

This commit is contained in:
mrpaulblack 2022-01-17 22:35:02 +01:00
parent 96ab5e57ff
commit 7a0f5e6b19
4 changed files with 7 additions and 7 deletions

View file

@ -42,11 +42,11 @@
text-align: left;
}
.ltr-rounded-left-corners(@radius: 10px) {
.ltr-rounded-left-corners(@radius) {
border-radius: 0 @radius @radius 0;
}
.ltr-rounded-right-corners(@radius: 10px) {
.ltr-rounded-right-corners(@radius) {
border-radius: @radius 0 0 @radius;
}