mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
32 lines
437 B
SCSS
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;
|
|
} |