Add wiring for UI density (#11260)

Note: You shouldn't use the `unstable.ui_density` setting – it is only
being added for testing and to enable new UI components to be built with
density in mind. Don't expect this to work well, or at all right now.

Adds some of the basic wiring we'll need to start scaling UI elements
throughout the app based on a desired density setting.

Release Notes:

- N/A
This commit is contained in:
Nate Butler 2024-05-01 14:28:52 -04:00 committed by GitHub
parent 0fce20d8da
commit 97512be378
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
13 changed files with 209 additions and 78 deletions

View file

@ -1,11 +1,13 @@
mod color;
mod elevation;
mod platform;
mod spacing;
mod typography;
mod units;
pub use color::*;
pub use elevation::*;
pub use platform::*;
pub use spacing::*;
pub use typography::*;
pub use units::*;