Skip to content
Snippets Groups Projects
Commit 3474ee4f authored by Robert Goldmann's avatar Robert Goldmann
Browse files

#338 - improved template header truncation

parent 76bebd7d
No related branches found
No related tags found
No related merge requests found
Pipeline #3483 canceled
...@@ -620,6 +620,7 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) + ...@@ -620,6 +620,7 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) +
display: none; display: none;
} }
/* large screens */
@media all and (min-width: 960px) { @media all and (min-width: 960px) {
.icon-budget { .icon-budget {
font-size: 4vmin !important; font-size: 4vmin !important;
...@@ -639,6 +640,7 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) + ...@@ -639,6 +640,7 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) +
} }
} }
/* medium screens */
@media all and (max-width: 959px) and (min-width: 600px) { @media all and (max-width: 959px) and (min-width: 600px) {
.icon-budget { .icon-budget {
font-size: 5.5vmin !important; font-size: 5.5vmin !important;
...@@ -652,8 +654,13 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) + ...@@ -652,8 +654,13 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) +
.budget { .budget {
font-size: 3.5vmin; font-size: 3.5vmin;
} }
.template-header-name {
max-width: 40% !important;
}
} }
/* small screens */
@media all and (max-width: 599px) and (min-width: 320px) { @media all and (max-width: 599px) and (min-width: 320px) {
.icon-budget { .icon-budget {
font-size: 6vmin !important; font-size: 6vmin !important;
...@@ -671,6 +678,10 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) + ...@@ -671,6 +678,10 @@ input[type="radio"]:not(:checked) + span::before, [type="radio"]:not(:checked) +
.container, .transaction-container { .container, .transaction-container {
width: 100% !important; width: 100% !important;
} }
.template-header-name {
max-width: 40% !important;
}
} }
.debug { .debug {
......
...@@ -535,6 +535,7 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa ...@@ -535,6 +535,7 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa
display: none; display: none;
} }
/* large screens */
@media all and (min-width: 960px) { @media all and (min-width: 960px) {
.icon-budget { .icon-budget {
font-size: 4vmin !important; font-size: 4vmin !important;
...@@ -554,6 +555,7 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa ...@@ -554,6 +555,7 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa
} }
} }
/* medium screens */
@media all and (max-width: 959px) and (min-width: 600px) { @media all and (max-width: 959px) and (min-width: 600px) {
.icon-budget { .icon-budget {
font-size: 5.5vmin !important; font-size: 5.5vmin !important;
...@@ -567,8 +569,13 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa ...@@ -567,8 +569,13 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa
.budget { .budget {
font-size: 3.5vmin; font-size: 3.5vmin;
} }
.template-header-name {
max-width: 40% !important;
}
} }
/* small screens */
@media all and (max-width: 599px) and (min-width: 320px) { @media all and (max-width: 599px) and (min-width: 320px) {
.icon-budget { .icon-budget {
font-size: 6vmin !important; font-size: 6vmin !important;
...@@ -586,6 +593,10 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa ...@@ -586,6 +593,10 @@ input[type="radio"]:checked + span::after, [type="radio"].with-gap:checked + spa
.container, .transaction-container { .container, .transaction-container {
width: 100% !important; width: 100% !important;
} }
.template-header-name {
max-width: 40% !important;
}
} }
.debug { .debug {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment