mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
25 lines
343 B
SCSS
25 lines
343 B
SCSS
|
|
|
|
ul.boxed {
|
|
background: #fff;
|
|
padding: 5px;
|
|
border: 1px solid var(--box-border);
|
|
|
|
li {
|
|
margin: 5px 0 5px 0;
|
|
|
|
&:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
ul.h-list li {
|
|
display: inline-block;
|
|
margin: 5px 10px 5px 10px;
|
|
}
|