Skip to content

Commit

Permalink
fix: remove logical property usage from media queries
Browse files Browse the repository at this point in the history
  • Loading branch information
Westbrook authored and GarthDB committed Nov 8, 2021
1 parent cf64a8c commit cdeb051
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/dialog/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ governing permissions and limitations under the License.
}
}

@media screen and (max-inline-size: 700px) {
@media screen and (max-width: 700px) {
.spectrum-Dialog .spectrum-Dialog-grid {
grid-template-columns:
var(--spectrum-dialog-confirm-padding) auto 1fr auto minmax(0, auto)
Expand Down
2 changes: 1 addition & 1 deletion components/tray/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ governing permissions and limitations under the License.
}

/* Should match --spectrum-tray-max-width above */
@media (max-inline-size: 375px) {
@media (max-width: 375px) {
.spectrum-Tray {
border-radius: var(--spectrum-tray-border-radius);
}
Expand Down

0 comments on commit cdeb051

Please sign in to comment.