47 lines
834 B
SCSS
47 lines
834 B
SCSS
|
.pricing-layout {
|
||
|
display: grid;
|
||
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||
|
}
|
||
|
|
||
|
.operations-container {
|
||
|
grid-column: 2/5;
|
||
|
}
|
||
|
|
||
|
.operations-mosaic {
|
||
|
// display: grid;
|
||
|
// grid-template-columns: 1fr 1fr;
|
||
|
// grid-gap: 1rem;
|
||
|
columns: 2;
|
||
|
}
|
||
|
|
||
|
.operations-category {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
|
||
|
.operations-table {
|
||
|
border: 1px solid black;
|
||
|
border-radius: 5px;
|
||
|
width: 100%;
|
||
|
padding: .5rem;
|
||
|
border-collapse: separate;
|
||
|
background: lighten($background-dark, 8%);
|
||
|
th {
|
||
|
opacity: 0.6;
|
||
|
text-align: left;
|
||
|
padding-bottom: .5rem;
|
||
|
margin-bottom: 1rem;
|
||
|
border-bottom: 1px solid gray;
|
||
|
}
|
||
|
tr {
|
||
|
td {
|
||
|
}
|
||
|
}
|
||
|
.operation-price {
|
||
|
text-align: right;
|
||
|
}
|
||
|
td.operation-price {
|
||
|
color: $primary;
|
||
|
}
|
||
|
}
|