orbital-base-components 0.1.1

Headless base primitives for Orbital — structure, semantics, and accessibility
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Loading bar stylesheet.
pub fn loading_bar_styles() -> &'static str {
    r#".orbital-loading-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.orbital-loading-bar {
    height: 2px;
    max-width: 0;
    background-color: var(--orb-color-brand-bg);
}
"#
}