dioxus-tw-components 0.2.11

Components made for Dioxus
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.separator {
	background-color: var(--border);
	flex-shrink: 1;
	width: 100%;
	height: 1px;
}

/* Horizontal by default but just for consistency */
.separator[data-orientation="horizontal"] {
	width: 100%;
	height: 1px;
}

.separator[data-orientation="vertical"] {
	width: 1px;
	height: 100%;
}