cmd/tsconnect: fix xterm CSS not being imported

@import rules need to come first, they are (silently) ignored otherwise.

Signed-off-by: Mihai Parparita <mihai@tailscale.com>
This commit is contained in:
Mihai Parparita 2022-07-27 16:09:39 -07:00 committed by Mihai Parparita
parent 7c3f480767
commit ab60f28227
1 changed files with 2 additions and 2 deletions

View File

@ -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";