Files
WrenchBoardIonic2023/src/app/pages/transaction/transaction.page.scss
T
CHIEFSOFT\ameye e565f31752 More wallet page
2023-06-24 11:50:01 -04:00

90 lines
1.7 KiB
SCSS

ion-header {
ion-toolbar {
--background: var(--ion-color-primary);
ion-icon {
color: white;
}
ion-title {
color: white;
}
}
}
ion-content {
.wallet_panel{
background-color: aliceblue;
box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
height: 150px;
border-radius: 15px;
margin-bottom: 10px;
.currency{
font-size: 24px;
color:darkcyan;
font-weight: bolder;
}
}
.bg_white {
display: flex;
justify-content: space-between;
align-items: center;
background-color: white;
padding: 5px;
box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.1);
border-radius: 10px;
margin-bottom: 20px;
.list {
display: flex;
.back_image {
height: 80px;
width: 80px;
border-radius: 10px;
}
.detail {
margin-left: 10px;
.bg_text {
color: var(--ion-color-primary);
background-color: #dfe1f3;
font-size: 12px;
padding: 2px 5px;
border-radius: 5px;
width: 80px;
text-align: center;
}
.name {
font-family: 'bold';
margin-top: 5px;
}
.paid {
display: flex;
justify-content: center;
width: 150px;
padding: 2px 10px;
border-radius: 5px;
margin-top: 5px;
font-size: 14px;
color: var(--ion-color-primary);
background-color: #dfe1f3;
}
}
}
.receipt {
font-size: 13px;
background-color: var(--ion-color-primary);
color: white;
padding: 1px 7px;
border-radius: 20px;
}
}
}