aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/reading/component/widget/style/Input.scala
blob: 967393be5c6eb229aae55b976832ffe6dc31ff2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package reading.component.widget.style

import scalacss.Defaults._

import reading.component.style.{ Color => C }

object Input extends StyleSheet.Inline {
  import dsl._

  val input = style(
    border(1.px, solid, C.mickado.value),
    borderRadius(2.px),
    padding(10.px),
    &.hover(borderColor(C.gray.value))
  )
}