12345678910111213141516171819202122232425262728 |
- .orderContainer{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .dataSelect {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- width: 90%;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- padding: 2% 3%;
- border-radius: 3%;
- }
- .order{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 93%;
- }
- .orderItem {
- width: 100%;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- border-radius: 1%;
- }
|