Releases: zaydek/duomo
Releases · zaydek/duomo
v0.6.18
v0.6.17
v0.6.16
Added support for the following border-radius
utilities:
.rounded-t-full {
border-top-left-radius: 9999px;
border-top-right-radius: 9999px;
}
.rounded-l-full {
border-top-left-radius: 9999px;
border-bottom-left-radius: 9999px;
}
.rounded-r-full {
border-top-right-radius: 9999px;
border-bottom-right-radius: 9999px;
}
.rounded-b-full {
border-bottom-left-radius: 9999px;
border-bottom-right-radius: 9999px;
}
v0.6.15
Added -10
, -1.25
, and 1.25
to letter-spacing
.
All of these classes are now supported:
.-tracking-10 {
letter-spacing: -0.1em;
}
.-tracking-5 {
letter-spacing: -0.05em;
}
.-tracking-2\.5 {
letter-spacing: -0.025em;
}
.-tracking-1\.25 {
letter-spacing: -0.0125em;
}
.tracking-0 {
letter-spacing: 0;
}
.tracking-1\.25 {
letter-spacing: 0.0125em;
}
.tracking-2\.5 {
letter-spacing: 0.025em;
}
.tracking-5 {
letter-spacing: 0.05em;
}
.tracking-10 {
letter-spacing: 0.1em;
}
v0.6.14
v0.6.13
v0.6.12
v0.6.11
v0.6.10
v0.6.9
Deprecated <AspectRatio>
in favor of a pure CSS implementation.
For example:
/* https://ratiobuddy.com */
.aspect-ratio-1\:1 {
position: relative;
}
.aspect-ratio-1\:1::before {
display: block;
content: "";
width: 100%;
padding-top: (1 / 1) * 100%;
}
.aspect-ratio-1\:1 > * {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
This is not yet implemented but a demonstration of an alternative API implementation.