mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 13:10:54 +00:00
97512be378
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
13 lines
203 B
Rust
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::*;
|