onboarding: Go back to not having system be separate (#35499)

Going back to having system be mutually exclusive with light/dark to
simplify the system. We instead just show both light and dark when
system is selected

Release Notes:

- N/A

---------

Co-authored-by: Danilo Leal <daniloleal09@gmail.com>
Co-authored-by: Anthony Eid <hello@anthonyeid.me>
This commit is contained in:
Ben Kunkle 2025-08-04 16:56:56 -05:00 committed by Orual
parent 0ceb5b7d90
commit 2ccf81f2f8
No known key found for this signature in database
3 changed files with 415 additions and 310 deletions

View file

@ -3522,7 +3522,7 @@ impl Serialize for Length {
/// # Returns
///
/// A `DefiniteLength` representing the relative length as a fraction of the parent's size.
pub fn relative(fraction: f32) -> DefiniteLength {
pub const fn relative(fraction: f32) -> DefiniteLength {
DefiniteLength::Fraction(fraction)
}