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