Skip to content

Releases: zaydek/duomo

v0.6.18

20 Nov 11:40
Compare
Choose a tag to compare

Fixed an implementation bug with opacity utilities.

v0.6.17

20 Nov 11:32
Compare
Choose a tag to compare

Added opacity utilities and pseudo state variants.

v0.6.16

20 Nov 11:02
Compare
Choose a tag to compare

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

20 Nov 06:35
Compare
Choose a tag to compare

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

19 Nov 22:10
Compare
Choose a tag to compare

Patches a bug in v0.6.13 which interpolates the CSS reset twice.

v0.6.13

19 Nov 22:09
Compare
Choose a tag to compare

Added forwarding for the internal CSS reset used.

Example usage:

@use "duomo";

@at-root {
  @include duomo.reset;
}

v0.6.12

18 Nov 17:42
Compare
Choose a tag to compare

Renamed -currentColor utilities to -current for better Tailwind CSS compatibility.

v0.6.11

18 Nov 17:01
Compare
Choose a tag to compare

Added 11, 13, 15, 17, and 19 to the standard range.

v0.6.10

18 Nov 14:17
Compare
Choose a tag to compare

stagger has now been renamed to [data-stagger] so it’s easier to remove when swapping placeholders with content.

v0.6.9

18 Nov 08:29
Compare
Choose a tag to compare

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.