Skip to content
Snippets Groups Projects
Commit 1570910c authored by Steinwender, Tamara's avatar Steinwender, Tamara
Browse files

Change touch target size

parent b8b14f2f
No related branches found
No related tags found
No related merge requests found
Pipeline #89930 passed
...@@ -858,8 +858,8 @@ export function getRadioAndCheckboxCss() { ...@@ -858,8 +858,8 @@ export function getRadioAndCheckboxCss() {
} }
.button-container .checkmark:after { .button-container .checkmark:after {
left: 6px; left: 8px;
top: 1px; top: 3px;
width: 5px; width: 5px;
height: 11px; height: 11px;
border: 1px solid var(--dbp-content); border: 1px solid var(--dbp-content);
...@@ -868,6 +868,28 @@ export function getRadioAndCheckboxCss() { ...@@ -868,6 +868,28 @@ export function getRadioAndCheckboxCss() {
-ms-transform: rotate(45deg); -ms-transform: rotate(45deg);
transform: rotate(45deg); transform: rotate(45deg);
} }
@media only screen and (orientation: portrait) and (max-width: 768px) {
.checkmark {
width: 30px;
height: 30px;
top: 5px;
}
.button-container{
line-height: 40px;
}
.button-container {
padding-left: 40px;
}
.button-container .checkmark::after {
left: 10px;
width: 10px;
height: 19px;
}
}
`; `;
} }
...@@ -1271,6 +1293,15 @@ export function getModalDialogCSS() { ...@@ -1271,6 +1293,15 @@ export function getModalDialogCSS() {
height: 100%; height: 100%;
width: 100%; width: 100%;
} }
}
@media only screen and (max-width: 768px) {
.modal-close {
width: 40px;
height: 40px;
}
} }
`; `;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment