Skip to content
Snippets Groups Projects
Commit 89b54319 authored by Konstantin Shupenko's avatar Konstantin Shupenko
Browse files

Long translations overflow fix

parent 2cecbbc2
No related branches found
No related tags found
Loading
......@@ -19,6 +19,9 @@
margin: 0;
padding: 0;
list-style-type: none;
word-wrap: break-word;
-webkit-hyphens: auto;
hyphens: auto;
}
.toolbar-block__list-item {
......
......@@ -12,6 +12,8 @@
margin: 0;
padding: 0;
list-style-type: none;
word-wrap: break-word;
hyphens: auto;
}
.toolbar-block__list-item {
......
......@@ -20,6 +20,7 @@
text-align: start;
-webkit-text-decoration: none;
text-decoration: none;
word-break: break-word;
color: var(--admin-toolbar-color-gray-800);
border: 0;
border-radius: var(--admin-toolbar-space-xs);
......
......@@ -12,6 +12,7 @@
cursor: pointer;
text-align: start;
text-decoration: none;
word-break: break-word;
color: var(--admin-toolbar-color-gray-800);
border: 0;
border-radius: var(--admin-toolbar-space-xs);
......
......@@ -31,7 +31,6 @@
.toolbar-menu__link {
position: relative;
display: flex;
inline-size: 100%;
align-items: center;
justify-content: space-between;
padding: var(--admin-toolbar-space-xs) 0.625rem;
......@@ -39,6 +38,7 @@
text-align: start;
-webkit-text-decoration: none;
text-decoration: none;
word-break: break-word;
color: var(--admin-toolbar-color-gray-800);
border: none;
border-radius: var(--admin-toolbar-space-xs);
......@@ -46,6 +46,7 @@
font-size: var(--admin-toolbar-font-size-xs);
font-weight: 600;
line-height: 1.5;
inline-size: 100%;
gap: var(--admin-toolbar-space-xs);
}
......@@ -88,6 +89,7 @@
.toolbar-menu__link[aria-expanded]::after {
display: block;
flex-shrink: 0;
content: "";
background-color: currentColor;
block-size: var(--admin-toolbar-space-s);
......
......@@ -24,13 +24,13 @@
.toolbar-menu__link {
position: relative;
display: flex;
inline-size: 100%;
align-items: center;
justify-content: space-between;
padding: var(--admin-toolbar-space-xs) 10px;
cursor: pointer;
text-align: start;
text-decoration: none;
word-break: break-word;
color: var(--admin-toolbar-color-gray-800);
border: none;
border-radius: var(--admin-toolbar-space-xs);
......@@ -38,6 +38,7 @@
font-size: var(--admin-toolbar-font-size-xs);
font-weight: 600;
line-height: 1.5;
inline-size: 100%;
gap: var(--admin-toolbar-space-xs);
&.current {
......@@ -80,6 +81,7 @@
&[aria-expanded] {
&::after {
display: block;
flex-shrink: 0;
content: "";
background-color: currentColor;
block-size: var(--admin-toolbar-space-s);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment