21 lines
473 B
Go
21 lines
473 B
Go
package bulma
|
|
|
|
const (
|
|
ColorPrimary = "is-primary"
|
|
ColorInfo = "is-info"
|
|
ColorLink = "is-link"
|
|
ColorWarning = "is-warning"
|
|
ColorSuccess = "is-success"
|
|
ColorError = "is-error"
|
|
|
|
SizeNormal = "is-normal"
|
|
SizeMedium = "is-medium"
|
|
SizeLarge = "is-large"
|
|
|
|
BreakpointDefault = ""
|
|
BreakpointWidescreen = "is-widescreen"
|
|
BreakpointFullHd = "is-fullhd"
|
|
BreakpointMaxDesktop = "is-max-desktop"
|
|
BreakpointMaxWidescreen = "is-max-widescreen"
|
|
)
|