summaryrefslogtreecommitdiffstats
path: root/nfsw
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-10-24 21:17:21 -0400
committerrsiddharth <s@ricketyspace.net>2019-10-24 21:17:21 -0400
commit7a252ece3c7cd23a089d87c08e59ac781bd1374f (patch)
treed767015b5a55b8af03c39a81fedf1ad6ecf91d0e /nfsw
parent5c06b53de95a6e3cac454880a5001b41c136ba2f (diff)
nfsw/static/auth.css: Add styling for smaller screens.
Diffstat (limited to 'nfsw')
-rw-r--r--nfsw/static/auth.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/nfsw/static/auth.css b/nfsw/static/auth.css
index 834a3b7..9ae3d22 100644
--- a/nfsw/static/auth.css
+++ b/nfsw/static/auth.css
@@ -78,3 +78,17 @@ input[type="submit"] {
cursor: pointer;
}
+
+@media (min-width: 100px) and (max-width: 650px) {
+ .auth-grid {
+ grid-template-columns: auto 80vw auto;
+ }
+
+ .form-group {
+ flex-direction: column;
+ }
+
+ .button {
+ width: 75vw;
+ }
+}