fix(cards): card badge with RTL (#775)

* fix: card badge with rtl

* chore: generate
This commit is contained in:
Ludovic Fernandez
2025-08-23 15:46:35 +02:00
committed by GitHub
parent 22c1a4f9df
commit 990d24906b
2 changed files with 8 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@@ -35,7 +35,12 @@
.hextra-card-tag {
position: absolute;
top: 5px;
right: 5px;
z-index: 10;
top: 5px;
&:where(:dir(ltr)) {
right: 5px;
}
&:where(:dir(rtl)) {
left: 5px;
}
}