Compare commits
2 Commits
207e242696
...
bc6643a6c2
| Author | SHA1 | Date | |
|---|---|---|---|
| bc6643a6c2 | |||
| ec6b72042e |
@ -30,8 +30,8 @@ body {
|
|||||||
width: 100% !important;
|
width: 100% !important;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
overflow-x: hidden !important;
|
overflow-x: hidden;
|
||||||
overflow-y: scroll !important;
|
overflow-y: auto;
|
||||||
font-family: var(--tui-font);
|
font-family: var(--tui-font);
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
|
|
||||||
|
|||||||
@ -69,12 +69,12 @@ export enum ImageType {
|
|||||||
PIXELATED = "ir-pixelated"
|
PIXELATED = "ir-pixelated"
|
||||||
}
|
}
|
||||||
|
|
||||||
export type KeyValue<T> = {
|
export type KeyValue<V, K = string> = {
|
||||||
key: string;
|
key: K;
|
||||||
value: T;
|
value: V;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type LabelValue<T> = {
|
export type LabelValue<L, V = string> = {
|
||||||
label: string;
|
label: L;
|
||||||
value: T;
|
value: V;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user