zed/crates/ui/src/styles.rs
Nate Butler 97512be378
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
2024-05-01 14:28:52 -04:00

13 lines
203 B
Rust

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::*;