Skip to content

Commit

Permalink
fix: preference style
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Nov 29, 2023
1 parent 6a7c45d commit 345c7d4
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/main/java/viewtify/style/FormStyles.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ public interface FormStyles extends StyleDSL {
display.width(80, px);
};

Style LabelMax = () -> {
display.width(360, px);
};

Style Input = () -> {
display.width(160, px);
};
Expand All @@ -50,15 +46,15 @@ public interface FormStyles extends StyleDSL {

Style Title = () -> {
margin.bottom(6, px);
font.size(18, px).weight.bold();
font.size(20, px).weight.bold();

$.descendant(() -> {
font.smooth.grayscale();
});
};

Style Description = () -> {
margin.vertical(4, px);
margin.vertical(GAP, px);
};

Style DescriptionTitle = () -> {
Expand Down

0 comments on commit 345c7d4

Please sign in to comment.