From b5a605bbd2853c8c3d15d1a9431b6359982c5b9c Mon Sep 17 00:00:00 2001 From: Username404 Date: Sun, 5 Feb 2023 12:41:25 +0100 Subject: [PATCH] Add a border between the text areas Signed-off-by: Username404 --- src/main/kotlin/main.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/kotlin/main.kt b/src/main/kotlin/main.kt index 198e20d..df2d121 100644 --- a/src/main/kotlin/main.kt +++ b/src/main/kotlin/main.kt @@ -55,6 +55,9 @@ fun makeConsole() { width: 25vw; height: 50vh; resize: none; } + #input_box, #output_box { border: solid 1px #2f5361; } + #input_box { border-right-color: #173f4f; } + #output_box { border-left-color: #173f4f; } #output_language { background-image: linear-gradient(30deg, #02027d 0%, #2f5361 20%); position: absolute;