VW Fixes Responsive Issues
Using 400px still breaks if at minimum width. However, using Viewport Width (vw) makes it responsive, thus it works at all sizes without out the need for condition media queries.
This commit is contained in:
parent
454b1c243e
commit
b846831608
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ button:disabled {
|
|||
box-shadow: none;
|
||||
text-align: left;
|
||||
/*Tourniquets text over 400px*/
|
||||
max-width: 400px;
|
||||
max-width: 20vw;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
|
|
Loading…
Add table
Reference in a new issue