mirror of
https://github.com/imfing/hextra.git
synced 2025-08-24 03:26:47 -04:00
fix(cards): card badge with RTL (#775)
* fix: card badge with rtl * chore: generate
This commit is contained in:

committed by
GitHub

parent
22c1a4f9df
commit
990d24906b
File diff suppressed because one or more lines are too long
@@ -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;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user