55 lines
1.0 KiB
Plaintext
55 lines
1.0 KiB
Plaintext
.container {
|
|
min-height: 80vh;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
flex-wrap: wrap;
|
|
|
|
.list {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-items: stretch;
|
|
|
|
.item {
|
|
border: 0.1px solid silver;
|
|
border-radius: 8px;
|
|
margin: 18px;
|
|
padding: 18px;
|
|
|
|
.qrCode:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btnBar {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: 12px;
|
|
}
|
|
}
|
|
|
|
.container2 {
|
|
min-height: 80vh;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
|
|
.body {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.add:hover {
|
|
color: var(--oak-color-primary);
|
|
}
|
|
}
|
|
} |