From 12d01379877a48a7ca9d30e0081d4cbd3b85f23a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Midb=C3=B8e?= Date: Mon, 26 Oct 2020 12:57:21 +0100 Subject: [PATCH] New global width classes for 100/75/50/25. --- src/styles/global.scss | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/styles/global.scss b/src/styles/global.scss index 87d0a81..eabf453 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -245,6 +245,21 @@ textarea { } } +.width { + &-100 { + width: 100%; + } + &-75 { + width: 75%; + } + &-50 { + width: 50%; + } + &-25 { + width: 25%; + } +} + .cursor { &-pointer { cursor: pointer;