Skip to content

Commit

Permalink
[#1 & #2] changed the view to tabs and added the basic option tab
Browse files Browse the repository at this point in the history
  • Loading branch information
Eriikah committed May 2, 2024
1 parent e5cbdf7 commit d4dd77a
Show file tree
Hide file tree
Showing 6 changed files with 1,174 additions and 965 deletions.
26 changes: 12 additions & 14 deletions src/components/applicationsComponents/AppPage.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
.appDesc {
display: grid;
margin: 5%;
grid-gap: 1%;
grid-auto-flow: row;
margin: 2%;
flex-wrap: wrap;
}

Expand All @@ -15,17 +12,8 @@
}
}

@media (min-width: 981px) {
.appDesc {
grid-template-columns: 47% 47%;
justify-content: center;
}
}

.box {
background-color: rgb(215, 239, 247);
border: 2px solid #acacac;
padding: 5%;
padding: 2%;
border-radius: 15px;
align-content: center;
flex-wrap: wrap;
Expand All @@ -34,6 +22,13 @@
.box tr {
text-align: left;
flex-wrap: wrap;
border: 1px solid #acacac;
}
tr:nth-child(odd) {
background-color: rgb(255, 255, 255);
}
tr:nth-child(even) {
background-color: rgb(249, 249, 249);
}

.box td {
Expand Down Expand Up @@ -65,9 +60,12 @@
}

table {
border: 1px solid #acacac;
width: 100%;
max-width: 100%;
flex-wrap: wrap;
border-collapse: collapse;
box-shadow: 5% #acacac;
}

.box .form {
Expand Down
Loading

0 comments on commit d4dd77a

Please sign in to comment.