1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 18:56:29 +02:00
Files
csslayout/styles/patterns/_fixed-at-corner.scss
Phuoc Nguyen 37a6729d08 feat: Chip
2022-09-21 08:55:08 +07:00

32 lines
437 B
SCSS

.fixed-at-corner {
width: 100%;
height: 100%;
border: 1px solid #d1d5db;
border-radius: 0.25rem;
position: relative;
}
.fixed-at-corner__corner {
position: absolute;
}
.fixed-at-corner__corner--tl {
left: 0;
top: 0;
}
.fixed-at-corner__corner--tr {
top: 0;
right: 0;
}
.fixed-at-corner__corner--br {
bottom: 0;
right: 0;
}
.fixed-at-corner__corner--bl {
bottom: 0;
left: 0;
}