1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-10-23 10:46:13 +02:00
Files
csslayout/styles/patterns/_drop-cap.scss
Phuoc Nguyen 37a6729d08 feat: Chip
2022-09-21 08:55:08 +07:00

18 lines
292 B
SCSS

.drop-cap {
overflow: hidden;
}
.drop-cap:first-letter {
border: 2px solid #d1d5db;
/* Display at the left */
float: left;
line-height: 1;
/* Spacing */
margin: 0 0.5rem 0 0;
padding: 0 0.5rem;
/* Optional */
font-size: 2rem;
font-weight: 700;
}