fix: prevent word wrapping on nav links, buttons, and footer links
- Add white-space: nowrap to section.log-in links, .user-display-name, .cart-and-count, .mps-button, .mps-footer-links a, .mps-footer-group-title - Prevents sloppy word breaks on "My Account", "Cart $0.00", etc.
This commit is contained in:
parent
e65e80c8b7
commit
853fc9d2e5
1 changed files with 9 additions and 0 deletions
|
|
@ -524,6 +524,10 @@ section.log-in {
|
|||
font-size: .75em;
|
||||
}
|
||||
|
||||
section.log-in a {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
section.search {
|
||||
align-self: center;
|
||||
}
|
||||
|
|
@ -686,6 +690,7 @@ pre, code {
|
|||
padding-bottom: 14px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
|
@ -1070,11 +1075,13 @@ a.shop-switch-button {
|
|||
a.user-display-name {
|
||||
margin: 14px;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
a.cart-and-count {
|
||||
margin: 14px;
|
||||
display: inline-block;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -3319,6 +3326,7 @@ textarea {
|
|||
color: var(--text-primary, #333);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.mps-footer-links {
|
||||
|
|
@ -3331,6 +3339,7 @@ textarea {
|
|||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.mps-footer-links a:hover {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue