Skip to content

Commit

Permalink
Merge pull request #282 from agiledev-students-fall2023/sprint/3/task/38
Browse files Browse the repository at this point in the history
Made Create Request Page Responsive
  • Loading branch information
hasiburratul authored Nov 26, 2023
2 parents 2db5c81 + 7ba1551 commit b73ccab
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions front-end/src/components/student/CreateRequest/CreateRequest.css
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,50 @@
border-radius: 5px;
cursor: pointer;
}

@media only screen and (max-width: 768px) {
.create-request-component-student {
width: 90%;
height: 90%;
}
.create-request-component-student {
background-color: white;
border: 1px solid black;
position: fixed;
z-index: 1000;
/* width: 550px; */
height: 600px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
overflow: auto;
border-radius: 3px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
flex-wrap: nowrap;
align-content: center;
}

.create-request-component-student .selected-files-and-departments {
width: 90%;
display: flex;
text-align: left;
font-size: 15px;
font-weight: 600;
padding-left: 4px;
position: relative;
margin-top: 5px;
min-height: 95px;
height: auto;
margin-top: 15px;
overflow-y: auto;
/* border: 1px solid #ccc; */
flex-direction: column;
}

}

0 comments on commit b73ccab

Please sign in to comment.