Skip to content
Snippets Groups Projects
Commit 34e79fec authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fixes #3601

Closes #3601

Merge request studip/studip!2506
parent 3881ab2c
No related branches found
No related tags found
No related merge requests found
...@@ -192,6 +192,12 @@ $gap-between-boxes: calc($login-page-margin / 2); ...@@ -192,6 +192,12 @@ $gap-between-boxes: calc($login-page-margin / 2);
overflow: hidden; overflow: hidden;
transition: max-height var(--transition-duration-slow) linear; transition: max-height var(--transition-duration-slow) linear;
// This prevents the focus border from being cut due to overflow: hidden
margin-left: -5px;
margin-right: -5px;
padding-left: 5px;
padding-right: 5px;
&.hide { &.hide {
max-height: 0px; max-height: 0px;
} }
......
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