36 lines
738 B
CSS
36 lines
738 B
CSS
#viewCartOptions .triangle-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
height: 200px; /* Adjust the height as needed */
|
|
}
|
|
|
|
#viewCartOptions .triangle-middle {
|
|
display: flex;
|
|
justify-content: center;
|
|
width: 100%;
|
|
margin: 10px 0; /* Adjust margin as needed */
|
|
}
|
|
|
|
#viewCartOptions .modal-btn {
|
|
padding: 15px 20px;
|
|
font-size: 1.2rem;
|
|
border-radius: 10px;
|
|
width: fit-content;
|
|
}
|
|
|
|
#viewCartOptions #purchaseRequestButton {
|
|
align-self: flex-start;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
#viewCartOptions #specialRequestButton {
|
|
align-self: flex-end;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
|
|
#filePreview .alert {
|
|
border-left: 4px solid #198754;
|
|
} |