From 944c878783727edf6157990fc481e2d3a63e28db Mon Sep 17 00:00:00 2001 From: Ari Archer Date: Sun, 5 Sep 2021 05:27:22 +0300 Subject: [PATCH] update @ Sun 5 Sep 05:27:22 EEST 2021 --- content/styles/shell/main.css | 4 ++++ content/styles/shell/main.scss | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/content/styles/shell/main.css b/content/styles/shell/main.css index 14c6b93..03e3c9d 100644 --- a/content/styles/shell/main.css +++ b/content/styles/shell/main.css @@ -9,6 +9,10 @@ width: 90%; padding: 0 0 1.2em 0; } +.shell .prompt:focus { + border: none; + outline: none; +} .shell .output { font-size: 1.4166666667em; } diff --git a/content/styles/shell/main.scss b/content/styles/shell/main.scss index 13dcac9..e09c34f 100644 --- a/content/styles/shell/main.scss +++ b/content/styles/shell/main.scss @@ -14,6 +14,11 @@ padding: 0 0 1.2em 0; } + .prompt:focus { + border: none; + outline: none; + } + .output { font-size: $shell_font_size / 1.2; } @@ -29,4 +34,5 @@ content: '# '; font-size: $shell_font_size; color: $default_content_colour; -} \ No newline at end of file +} +