Spaces:
Runtime error
Runtime error
File size: 1,004 Bytes
2485dd8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
.app-wrapper-sra {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.main-container-sra {
background-color: white;
display: flex;
flex-direction: column;
justify-content: flex-start;
text-align: left;
margin: 16px;
margin-bottom: 36px;
border-radius: 8px;
box-shadow: 0px 24px 30px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(0, 0, 0, 0.05);
overflow: hidden;
}
.top-section-sra {
padding-top: 24px;
margin-bottom: 24px;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.horizontal-padding-sra {
padding-left: 20px;
padding-right: 20px;
}
.header-container-sra {
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
margin-bottom: 24px;
}
.header-icon-sra {
display: block;
margin-right: 12px;
}
.translation-text-container-sra {
background-color: #f8f8f8;
padding-top: 12px;
padding-bottom: 4px;
}
.text-chunk-sra {
margin-bottom: 12px;
}
|