orbital-core-components 0.1.1

Themed Orbital UI components for Leptos applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub fn counter_badge_styles() -> &'static str {
    r#"
.orbital-counter-badge {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}

.orbital-counter-badge__pill {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
    z-index: 1;
}
"#
}