mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2025-12-06 00:20:05 +01:00
95 lines
1.7 KiB
TypeScript
95 lines
1.7 KiB
TypeScript
const sizes = {
|
|
calendar: {
|
|
maxHeight: 357,
|
|
},
|
|
clock: {
|
|
fontSize: "12px",
|
|
padding: 5,
|
|
},
|
|
contextMenu: {
|
|
subMenuOffset: 3,
|
|
},
|
|
fileEntry: {
|
|
fontSize: "12px",
|
|
iconPadding: "2px",
|
|
iconSize: "48px",
|
|
maxIconTextDisplayWidth: 70,
|
|
maxListTextDisplayWidth: 100,
|
|
renamePadding: 5,
|
|
renameWidth: 75,
|
|
},
|
|
fileExplorer: {
|
|
minimumStatusBarWidth: 268,
|
|
navBarHeight: "35px",
|
|
navInputHeight: 22,
|
|
statusBarHeight: "23px",
|
|
},
|
|
fileManager: {
|
|
columnGap: "1px",
|
|
columnHeight: 25,
|
|
columnMinWidth: 70,
|
|
columnResizeWidth: 7,
|
|
detailsEndPadding: 16,
|
|
detailsRowHeight: "22px",
|
|
detailsStartPadding: 14,
|
|
gridEntryHeight: "70px",
|
|
gridEntryWidth: "74px",
|
|
padding: "5px 0",
|
|
rowGap: "28px",
|
|
},
|
|
search: {
|
|
headerHeight: 52,
|
|
inputHeight: 40,
|
|
maxHeight: 415,
|
|
size: 600,
|
|
},
|
|
startMenu: {
|
|
maxHeight: 390,
|
|
sideBar: {
|
|
buttonHeight: 48,
|
|
expandedWidth: "228px",
|
|
iconSize: "16px",
|
|
width: 48,
|
|
},
|
|
size: 320,
|
|
},
|
|
taskbar: {
|
|
ai: {
|
|
buttonWidth: "40px",
|
|
chatWidth: 415,
|
|
},
|
|
blur: "5px",
|
|
button: {
|
|
iconSize: "15px",
|
|
width: 36,
|
|
},
|
|
entry: {
|
|
borderSize: "2px",
|
|
fontSize: "12px",
|
|
iconSize: "16px",
|
|
maxWidth: "160px",
|
|
peekControlsHeight: 36,
|
|
peekImage: {
|
|
height: 82,
|
|
margin: 8,
|
|
},
|
|
},
|
|
panelBlur: "12px",
|
|
},
|
|
titleBar: {
|
|
buttonIconWidth: "10px",
|
|
buttonWidth: "45px",
|
|
fontSize: "12px",
|
|
height: 30,
|
|
iconMarginRight: "4px",
|
|
iconSize: "16px",
|
|
},
|
|
window: {
|
|
cascadeOffset: 26,
|
|
outline: "1px",
|
|
textTopPadding: 14,
|
|
},
|
|
};
|
|
|
|
export default sizes;
|