Spaces:
Runtime error
Runtime error
File size: 478 Bytes
ca10871 | 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 | .top-bar {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 16px;
}
.source-logo {
width: 50px; /* Adjust the size of the logos */
}
.result {
border-radius: 8px;
padding: 16px;
margin-bottom: 16px;
background: transparent; /* Use theme background instead */
}
h2 {
font-size: 1.2em;
margin: 0;
color: white; /* Ensure headings are visible in dark mode */
}
p {
margin: 8px 0;
color: #b0bec5; /* Light grey for paragraph text */
} |