From ddc3d52378f98a1db43858f42ce9c0d7ec8b9f82 Mon Sep 17 00:00:00 2001 From: Guillaume Vincent Date: Tue, 28 Mar 2017 09:04:40 +0200 Subject: [PATCH] Add full width and no border css modifiers --- index.html | 9 ++++----- src/LessPass.scss | 9 +++++++++ src/LessPass.vue | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index 4340040..8254933 100644 --- a/index.html +++ b/index.html @@ -8,8 +8,7 @@ -
-
+
+
diff --git a/src/LessPass.scss b/src/LessPass.scss index 295ee28..1cb5b95 100644 --- a/src/LessPass.scss +++ b/src/LessPass.scss @@ -43,8 +43,17 @@ @import '~hint.css/hint.css'; @import '~awesomplete/awesomplete.css'; +.lesspass--unbordered #lesspass{ + border: none; +} + +.lesspass--full-width #lesspass{ + max-width: none !important; +} + #lesspass { color: #464646; + max-width: 420px; } @media (max-width: 419px) { diff --git a/src/LessPass.vue b/src/LessPass.vue index 5f10110..4474b67 100644 --- a/src/LessPass.vue +++ b/src/LessPass.vue @@ -1,5 +1,5 @@