Skip to content

Commit

Permalink
Fix property inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
Saltssaumure committed May 26, 2024
1 parent 09c6489 commit a15db56
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scss/part/_validate.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,42 +28,42 @@
// Border radius for emojis
@property --demo-emoji-radius {
syntax: "<length>";
inherits: false;
inherits: true;
initial-value: 4px;
}

// Opacity for emojis
@property --demo-emoji-opacity {
syntax: "<number>";
inherits: false;
inherits: true;
initial-value: 0.5;
}

// Hue for emojis, icons, badges, etc.
@property --demo-icon-hue {
syntax: "<number>";
inherits: false;
inherits: true;
initial-value: 240;
}

// Hue for attachments
@property --demo-image-hue {
syntax: "<number>";
inherits: false;
inherits: true;
initial-value: 270;
}

// Hue for server banners
@property --demo-banner-hue {
syntax: "<number>";
inherits: false;
inherits: true;
initial-value: 180;
}

// Hue for self avatars
@property --demo-self-hue {
syntax: "<number>";
inherits: false;
inherits: true;
initial-value: 300;
}

Expand Down

0 comments on commit a15db56

Please sign in to comment.