mirror of
https://github.com/fiatjaf/nak.git
synced 2025-12-09 00:58:50 +00:00
10 lines
322 B
Scala
10 lines
322 B
Scala
import calico.html.io.*
|
|
|
|
object Styles {
|
|
val button = cls :=
|
|
"shrink bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 mx-2 px-4 rounded "
|
|
val buttonSmall = cls :=
|
|
"shrink text-sm bg-blue-500 hover:bg-blue-700 text-white font-bold mx-2 px-2 rounded "
|
|
val mono = styleAttr := "font-family: monospace"
|
|
}
|