From 6765affbe5c17b4a81b3760c4f027310ad69fc7f Mon Sep 17 00:00:00 2001 From: Kevin Lin <kevinl@cs.uw.edu> Date: Sat, 4 Jul 2020 17:05:41 -0700 Subject: [PATCH] _sass: Module inline-block -> flexbox for user-select --- _sass/custom/module.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/_sass/custom/module.scss b/_sass/custom/module.scss index a057233..cf7413d 100644 --- a/_sass/custom/module.scss +++ b/_sass/custom/module.scss @@ -22,7 +22,6 @@ } p { - display: inline-block; margin: 0; width: 100%; @@ -60,9 +59,15 @@ } .module-event { + display: flex; + flex-direction: column; font-weight: 500; grid-column-start: 2; + @include mq(sm) { + flex-direction: row; + } + +.module-event { padding-top: 0; } -- GitLab