38 lines
626 B
SCSS
38 lines
626 B
SCSS
@charset "utf-8";
|
|
@import 'ticket_variables';
|
|
|
|
|
|
.ticket-container {
|
|
max-width: $main-width;
|
|
width: 96%;
|
|
margin: auto;
|
|
background-color: $white;
|
|
}
|
|
|
|
|
|
.ticket-section-heading {
|
|
background-color: $blue;
|
|
color: $white;
|
|
padding: 10px 14px;
|
|
}
|
|
.ticket-section-container {
|
|
padding: 0 1rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
.ticket-category-title {
|
|
background-color: #fff;
|
|
}
|
|
|
|
.ticket-item {
|
|
padding: 8px 5px;
|
|
border-bottom: 1px solid $light-blue;
|
|
}
|
|
|
|
.ticket-item:first-child {
|
|
border-top: 1px solid $light-blue;
|
|
}
|
|
|
|
.ticket-section-view-all {
|
|
text-align: right;
|
|
margin: 20px 5px 40px;
|
|
} |