mirror of
https://github.com/picocss/pico.git
synced 2025-04-21 09:06:14 -04:00
fix: text align logical properties
This commit is contained in:
parent
1b4853ca06
commit
827e5fa308
4 changed files with 5 additions and 5 deletions
|
@ -74,7 +74,7 @@
|
||||||
// Type button
|
// Type button
|
||||||
&[role="button"] {
|
&[role="button"] {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: left;
|
text-align: start;
|
||||||
|
|
||||||
// Marker
|
// Marker
|
||||||
&::after {
|
&::after {
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
[dir="rtl"] {
|
[dir="rtl"] {
|
||||||
#{$parent-selector} details {
|
#{$parent-selector} details {
|
||||||
summary {
|
summary {
|
||||||
text-align: right;
|
text-align: end;
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
float: left;
|
float: left;
|
||||||
|
|
|
@ -68,7 +68,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
> footer {
|
> footer {
|
||||||
text-align: right;
|
text-align: end;
|
||||||
|
|
||||||
button,
|
button,
|
||||||
[role="button"] {
|
[role="button"] {
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
background-color: var(#{$css-var-prefix}background-color);
|
background-color: var(#{$css-var-prefix}background-color);
|
||||||
color: var(#{$css-var-prefix}color);
|
color: var(#{$css-var-prefix}color);
|
||||||
font-weight: var(#{$css-var-prefix}font-weight);
|
font-weight: var(#{$css-var-prefix}font-weight);
|
||||||
text-align: left;
|
text-align: start;
|
||||||
text-align: start;
|
text-align: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -57,6 +57,6 @@
|
||||||
[dir="rtl"]
|
[dir="rtl"]
|
||||||
#{$parent-selector}
|
#{$parent-selector}
|
||||||
:is([type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"]) {
|
:is([type="date"], [type="datetime-local"], [type="month"], [type="time"], [type="week"]) {
|
||||||
text-align: right;
|
text-align: end;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue