Spaces:
Sleeping
Sleeping
File size: 554 Bytes
83759f1 c785493 eec2f61 a2f03c9 eec2f61 c785493 eec2f61 a2f03c9 eec2f61 83759f1 eec2f61 83759f1 eec2f61 09bf047 |
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 |
/* app.css */
/* Style for bookmark cards */
.card {
background-color: #1e1e1e;
color: white;
border-radius: 5px;
padding: 15px;
margin: 10px 0;
}
.card-content h3 {
margin-bottom: 10px;
}
.card-content p {
margin: 5px 0;
}
/* Ensure CheckboxGroup is only visible within its container */
.gradio-container .checkboxgroup {
display: block;
}
/* Hide CheckboxGroup globally */
.checkboxgroup {
display: none;
}
/* Specific styling within Manage Bookmarks tab */
.tab-content .checkboxgroup {
display: block;
}
|