Small header (#1721)

Co-authored-by: René Pfeuffer <rene.pfeuffer@cloudogu.com>
This commit is contained in:
Eduard Heimbuch
2021-07-07 16:26:58 +02:00
committed by GitHub
parent 123bf5c862
commit cd6e624e61
20 changed files with 656 additions and 182 deletions

View File

@@ -30,20 +30,20 @@ export type Device = {
export const devices = {
mobile: {
width: 768
width: 768,
},
tablet: {
width: 769
width: 769,
},
desktop: {
width: 1024
width: 1024,
},
widescreen: {
width: 1216
width: 1216,
},
fullhd: {
width: 1408
}
width: 1408,
},
};
export type DeviceType = keyof typeof devices;