From 0e105588da671a302cbd3a8132a019a6427d1190 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 3 Jun 2023 17:14:40 +0200 Subject: [PATCH] Optimized the LogArea styles.sass for mobile devices --- .../ConfigurationArea/components/LogArea/styles.sass | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationArea/components/LogArea/styles.sass b/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationArea/components/LogArea/styles.sass index 0e760ee..11197f5 100644 --- a/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationArea/components/LogArea/styles.sass +++ b/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationArea/components/LogArea/styles.sass @@ -4,6 +4,7 @@ background-color: $black border: 2px solid $dark-gray border-radius: 1rem + box-sizing: border-box padding: 1rem 1rem width: 20rem @@ -46,4 +47,9 @@ color: $green .icon-failed svg - color: $red \ No newline at end of file + color: $red + +@media screen and (max-width: 768px) + .log-area + width: 100% + margin-bottom: 1rem \ No newline at end of file