feat(ui): LESS Integration

Added less integration + light mode
This commit is contained in:
LQ63
2025-10-27 22:57:55 +01:00
parent 365f9757a2
commit 083b7a03b1
3 changed files with 3 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
@color: white; @import "light-mode.less";
body { body {
background-image: @background-image; background-image: @background-image;
background-size: 100vw 100vh;
} }
html, body { html, body {

View File

@@ -1,2 +0,0 @@
@color: red;
@background-image: url("/assets/images/img.png");

View File

@@ -5,4 +5,4 @@ addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0") addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.0")
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1") addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.3.1")
addSbtPlugin("com.github.sbt" % "sbt-less" % "2.0.1") addSbtPlugin("com.typesafe.sbt" % "sbt-less" % "1.1.2")