From 121b400f10d98362fcec6730e4d30df55f246b71 Mon Sep 17 00:00:00 2001 From: Frances Botsford Date: Tue, 25 Apr 2017 16:36:58 -0400 Subject: [PATCH] move online button to right --- app/assets/stylesheets/_results.scss | 6 +++++- app/assets/stylesheets/_variables.scss | 6 ++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/_results.scss b/app/assets/stylesheets/_results.scss index e869f7c5..fccc17f9 100644 --- a/app/assets/stylesheets/_results.scss +++ b/app/assets/stylesheets/_results.scss @@ -103,7 +103,11 @@ text-align: right; font-size: 1.4rem; - .online { + &:after { + @extend .clear; + } + + .details { float: left; } } diff --git a/app/assets/stylesheets/_variables.scss b/app/assets/stylesheets/_variables.scss index 177334de..1922ce20 100644 --- a/app/assets/stylesheets/_variables.scss +++ b/app/assets/stylesheets/_variables.scss @@ -111,3 +111,9 @@ $z-depth-way-front: 1000; padding-left: 0; text-indent: 0; } + +.clear { + content: ''; + display: table; + clear: both; +}