mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-09 18:02:50 +01:00
26 lines
363 B
Text
26 lines
363 B
Text
@import "./flatEdges.less";
|
|
@border-radius: 3px;
|
|
|
|
.root {
|
|
color: #fff;
|
|
background-color: rgba(40, 40, 40, 0.95);
|
|
border: solid 1px #000;
|
|
border-radius: @border-radius;
|
|
}
|
|
|
|
.flatBottom {
|
|
._flatBottom(@border-radius);
|
|
}
|
|
|
|
.flatTop {
|
|
._flatTop(@border-radius);
|
|
}
|
|
|
|
.flatRight {
|
|
._flatRight(@border-radius);
|
|
}
|
|
|
|
.flatLeft {
|
|
._flatLeft(@border-radius);
|
|
}
|
|
|