Commit 557f3fe1 authored by ItaloBC's avatar ItaloBC Committed by XhmikosR
Browse files

Added Viewport Height & Width helpers

This allows the user to make a container (ideally) to use viewport height and width and allow better vertical/horizontal alignments of elements.
parent 1c91f482
2 merge requests!28721Hot test,!27561Adds font-weight-medium to font weight classes
Showing with 8 additions and 0 deletions
+8 -0
...@@ -10,3 +10,11 @@ ...@@ -10,3 +10,11 @@
.mw-100 { max-width: 100% !important; } .mw-100 { max-width: 100% !important; }
.mh-100 { max-height: 100% !important; } .mh-100 { max-height: 100% !important; }
// Viewport additional helpers
.min-vw-100 { min-width: 100vw !important; }
.min-vh-100 { min-height: 100vh !important; }
.vw-100 { width: 100vw !important; }
.vh-100 { height: 100vh !important; }
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment