From 5468ef37bde5cedc6f06899c5cd7d3cb633018f8 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 1 Jun 2023 19:49:20 +0200 Subject: [PATCH] Created the ConfigurationRow index styles.sass --- .../components/ConfigurationRow/styles.sass | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 client/src/pages/tools/linux/InstallSoftware/components/ConfigurationRow/styles.sass diff --git a/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationRow/styles.sass b/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationRow/styles.sass new file mode 100644 index 0000000..8b81fbb --- /dev/null +++ b/client/src/pages/tools/linux/InstallSoftware/components/ConfigurationRow/styles.sass @@ -0,0 +1,29 @@ +@import "@/common/styles/colors" + +.configuration-row + display: flex + align-items: center + justify-content: space-between + gap: 1rem + + .left-area + color: $darker-white + display: flex + align-items: center + gap: 0.3rem + font-size: 16pt + font-weight: 700 + + p + margin: 0 + + +.input-field + background-color: $black + color: $darker-white + border: 2px solid $dark-gray + border-radius: 1rem + padding: 0.4rem 0.7rem + box-sizing: border-box + font-size: 16pt + width: 60% \ No newline at end of file