From 5ee9364f1ce0f1499ee54edca083bc1d09a74738 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 4 May 2021 11:32:57 +0200 Subject: [PATCH] refactoring of crud headers --- assets/css/admin.scss | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/assets/css/admin.scss b/assets/css/admin.scss index fe82c8a..3a2861e 100644 --- a/assets/css/admin.scss +++ b/assets/css/admin.scss @@ -419,3 +419,32 @@ th { fieldset.form-group { margin-bottom: 0; } + +.crud-header { + &-title { + font-size: 2em; + } + + &-actions { + text-align: right; + margin-bottom: 10px; + } + + @media screen and (min-width: 770px) { + &-title { + float: left; + font-size: 2em; + } + + &-actions { + float: right; + } + + } + + &::after { + display: block; + content: ""; + clear: both; + } +}