changed review design
This commit is contained in:
+38
-3
@@ -1,13 +1,41 @@
|
||||
.input-box {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 80px;
|
||||
width: 100%;
|
||||
padding: 40px;
|
||||
grid-template-columns: repeat(1fr, 3);
|
||||
justify-items: center;
|
||||
align-items: center;
|
||||
height: fit-content;
|
||||
}
|
||||
|
||||
.input-component-box {
|
||||
display: grid;
|
||||
width: fit-content;
|
||||
height: fit-content;
|
||||
grid-template-rows: 150px 150px 150px;
|
||||
justify-items: center;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.description {
|
||||
grid-column: 1;
|
||||
grid-row: 1;
|
||||
align-self: flex-end;
|
||||
}
|
||||
|
||||
.input-component {
|
||||
grid-column: 1;
|
||||
grid-row: 2;
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
.description.second {
|
||||
grid-column: 1;
|
||||
grid-row: 3;
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
.review-select-dropdown {
|
||||
width: 200px;
|
||||
display: flex;
|
||||
@@ -47,6 +75,13 @@
|
||||
border-color: white;
|
||||
}
|
||||
|
||||
.review-select-menu.grid {
|
||||
width: 300%;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
grid-auto-rows: 1fr;
|
||||
}
|
||||
|
||||
.review-select-item {
|
||||
cursor: pointer;
|
||||
border: 1px solid var(--surface);
|
||||
|
||||
Reference in New Issue
Block a user