mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-25 22:09:36 +02:00
Multiple changes to App related components. Created form to add new Apps, outsourced AppGrid component
This commit is contained in:
parent
f34bbd938d
commit
7e540587a5
9 changed files with 276 additions and 45 deletions
28
client/src/components/Apps/AppGrid/AppGrid.module.css
Normal file
28
client/src/components/Apps/AppGrid/AppGrid.module.css
Normal file
|
@ -0,0 +1,28 @@
|
|||
.AppGrid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
|
||||
@media (min-width: 430px) {
|
||||
.AppGrid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 670px) {
|
||||
.AppGrid {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 900px) {
|
||||
.AppGrid {
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
/* 320px — 480px: Mobile devices.
|
||||
481px — 768px: iPads, Tablets.
|
||||
769px — 1024px: Small screens, laptops.
|
||||
1025px — 1200px: Desktops, large screens.
|
||||
1201px and more — Extra large screens, TV. */
|
Loading…
Add table
Add a link
Reference in a new issue