Skip to content

Commit

Permalink
Add missing dynamic min widths. (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
jverkoey authored Sep 12, 2024
1 parent 88ed86c commit 7b2199a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
public struct FrameMinHeightValue: ExpressibleByIntegerLiteral, ExpressibleByFloatLiteral {
public static let full = Self(.full)
public static let screen = Self(.screen)
public static let svw = Self(.svw)
public static let lvw = Self(.lvw)
public static let dvw = Self(.dvw)
public static let min = Self(.min)
public static let max = Self(.max)
public static let fit = Self(.fit)
Expand Down

0 comments on commit 7b2199a

Please sign in to comment.