moved from kodorvan/understyle

This commit is contained in:
2025-11-23 17:20:17 +07:00
commit 603ef15147
28 changed files with 1072 additions and 0 deletions

29
display_grid.css Normal file
View File

@@ -0,0 +1,29 @@
@charset "UTF-8";
i.icon.display.grid {
display: block;
height: 14px;
width: 14px;
box-sizing: border-box;
position: relative;
border: 2px solid transparent;
box-shadow: 0 0 0 2px;
&::after,
&::before {
top: 0;
left: 0;
position: absolute;
content: "";
width: 10px;
height: 4px;
box-sizing: border-box;
display: block;
border-right: 4px solid;
border-left: 4px solid;
}
&::before {
top: 6px;
}
}