feature/shoppinglist #1

Merged
SabrinaMiranda merged 6 commits from feature/shoppinglist into main 2022-11-10 18:01:20 +00:00
3 changed files with 27 additions and 0 deletions
Showing only changes of commit 3b669b21a1 - Show all commits

View File

@ -1,3 +1,7 @@
.shopping-form {
margin-bottom: 32px;
}
.shopping-form-inputs {
display: flex;
margin-bottom: 24px;

22
styles/items.css Normal file
View File

@ -0,0 +1,22 @@
.shopping-result {
max-width: 416px;
}
.shopping-result-head,
.shopping-item {
display: grid;
grid-template-columns: 3fr 1fr;
padding: 8px 16px;
}
.shopping-result-head {
background: var(--gray-100);
}
.shopping-items {
list-style: none;
}
.shopping-item:nth-child(even) {
background: var(--gray-100);
}

View File

@ -1,6 +1,7 @@
@import "global.css";
@import "variables.css";
@import "form.css";
@import "items.css";
.shopping-container {
max-width: 1200px;