Skip to content

Commit

Permalink
Merge pull request #43 from sidd3103/Visual-Properties
Browse files Browse the repository at this point in the history
Added more visual properties
  • Loading branch information
chasefleming authored Oct 30, 2023
2 parents a2bc06b + 5a1fe2f commit aada551
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions styles/styles.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,22 @@ const (
TextIndent = "text-indent"

// Visual Properties
BackgroundColor = "background-color"
Background = "background"
BackgroundImage = "background-image"
BackgroundRepeat = "background-repeat"
BackgroundSize = "background-size"
Opacity = "opacity"
BoxSizing = "box-sizing"
Cursor = "cursor"
Transition = "transition"
Transform = "transform"
BackgroundColor = "background-color"
Background = "background"
BackgroundImage = "background-image"
BackgroundRepeat = "background-repeat"
BackgroundSize = "background-size"
Opacity = "opacity"
BoxSizing = "box-sizing"
Cursor = "cursor"
Transition = "transition"
Transform = "transform"
BackgroundPosition = "background-position"
BackgroundAttachment = "background-attachment"
BackgroundBlendMode = "background-blend-mode"
BackfaceVisibility = "backface-visibility"
Perspective = "perspective"
TransformOrigin = "transform-origin"

// List properties
ListStyle = "list-style"
Expand All @@ -128,6 +134,7 @@ const (
TableLayout = "table-layout"
CaptionSide = "caption-side"


// Other Properties
Visibility = "visibility"
Clip = "clip"
Expand Down

0 comments on commit aada551

Please sign in to comment.