salix/front/core/styles/border.scss

23 lines
404 B
SCSS

@import "./variables";
.border-solid {
border: $border-thin-light;
}
.border-solid-top {
border-top: $border-thin-light;
}
.border-solid-left {
border-left: $border-thin-light;
}
.border-solid-right {
border-right: $border-thin-light;
}
.border-solid-bottom {
border-bottom: $border-thin-light;
}
/* Border Radius */
.border-radius {
border-radius: 4px;
}