From ab60f28227a4183660f200b99fd1f9f6c22644ae Mon Sep 17 00:00:00 2001 From: Mihai Parparita Date: Wed, 27 Jul 2022 16:09:39 -0700 Subject: [PATCH] cmd/tsconnect: fix xterm CSS not being imported @import rules need to come first, they are (silently) ignored otherwise. Signed-off-by: Mihai Parparita --- cmd/tsconnect/src/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/tsconnect/src/index.css b/cmd/tsconnect/src/index.css index f6d87aef1..a1852f034 100644 --- a/cmd/tsconnect/src/index.css +++ b/cmd/tsconnect/src/index.css @@ -2,8 +2,8 @@ /* Use of this source code is governed by a BSD-style */ /* license that can be found in the LICENSE file. */ +@import "xterm/css/xterm.css"; + @tailwind base; @tailwind components; @tailwind utilities; - -@import "xterm/css/xterm.css";