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:
Electron - Mark Firth 2018-06-26 16:43:44 +10:00 committed by GitHub
parent 454b1c243e
commit b846831608
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;