mirror of
https://github.com/billz/raspap-webgui.git
synced 2023-10-10 13:37:24 +02:00
19 lines
468 B
Plaintext
Executable File
19 lines
468 B
Plaintext
Executable File
// Single side border-radius
|
|
|
|
.border-top-radius(@radius) {
|
|
border-top-right-radius: @radius;
|
|
border-top-left-radius: @radius;
|
|
}
|
|
.border-right-radius(@radius) {
|
|
border-bottom-right-radius: @radius;
|
|
border-top-right-radius: @radius;
|
|
}
|
|
.border-bottom-radius(@radius) {
|
|
border-bottom-right-radius: @radius;
|
|
border-bottom-left-radius: @radius;
|
|
}
|
|
.border-left-radius(@radius) {
|
|
border-bottom-left-radius: @radius;
|
|
border-top-left-radius: @radius;
|
|
}
|