From c1577fa933ea13565582c8f163302bf2f8caf933 Mon Sep 17 00:00:00 2001 From: Georgi Nikolov <gnnikolov87@gmail.com> Date: Mon, 6 Dec 2021 16:30:17 +0100 Subject: [PATCH] Updated the css for correct display of the dashboard blade --- public/css/app.css | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/public/css/app.css b/public/css/app.css index 847798c..8a78fda 100644 --- a/public/css/app.css +++ b/public/css/app.css @@ -15513,3 +15513,28 @@ a.text-dark:focus { right: 5px; } + +/* Split the screen in half */ +.split-left { + height: 100%; + width: 15%; + left: 0; + position: fixed; + z-index: 1; + overflow-x: hidden; + padding-top: 5px; + border-style: solid; + border-color: #dee2e6; +} + +/* Control the right side */ +.split-right { + height: 100%; + width: 85%; + right: 0; + position: fixed; + z-index: 1; + overflow-x: hidden; + padding-top: 20px; + padding-left: 20px; +} \ No newline at end of file -- GitLab