Spaces:
Sleeping
Sleeping
TOTEM Studio commited on
Commit ·
4557222
1
Parent(s): 4ede31b
fix sidebar: logo edge-to-edge, bg #04081a matches logo, remove border-radius duplicate
Browse files
app.py
CHANGED
|
@@ -361,22 +361,23 @@ TOTEM_CSS = """
|
|
| 361 |
flex: 0 0 256px;
|
| 362 |
min-height: 100%;
|
| 363 |
border-right: 1px solid rgba(246, 241, 232, 0.10);
|
| 364 |
-
background:
|
| 365 |
-
padding:
|
| 366 |
display: flex;
|
| 367 |
flex-direction: column;
|
| 368 |
}
|
| 369 |
|
| 370 |
.totem-shell .totem-brand {
|
| 371 |
-
padding: 0
|
| 372 |
-
margin-bottom:
|
| 373 |
}
|
| 374 |
|
| 375 |
.totem-shell .totem-brand-img {
|
| 376 |
width: 100%;
|
| 377 |
-
max-width:
|
| 378 |
height: auto;
|
| 379 |
display: block;
|
|
|
|
| 380 |
}
|
| 381 |
|
| 382 |
.totem-main {
|
|
@@ -767,16 +768,15 @@ TOTEM_CSS = """
|
|
| 767 |
}
|
| 768 |
|
| 769 |
.totem-shell .totem-brand {
|
| 770 |
-
margin-bottom:
|
| 771 |
-
line-height: 1.1;
|
| 772 |
}
|
| 773 |
|
| 774 |
.totem-shell .totem-brand-img {
|
| 775 |
width: 100%;
|
| 776 |
-
max-width:
|
| 777 |
height: auto;
|
| 778 |
display: block;
|
| 779 |
-
border-radius:
|
| 780 |
}
|
| 781 |
|
| 782 |
.totem-hero-bg {
|
|
|
|
| 361 |
flex: 0 0 256px;
|
| 362 |
min-height: 100%;
|
| 363 |
border-right: 1px solid rgba(246, 241, 232, 0.10);
|
| 364 |
+
background: #04081a;
|
| 365 |
+
padding: 0 0 24px 0;
|
| 366 |
display: flex;
|
| 367 |
flex-direction: column;
|
| 368 |
}
|
| 369 |
|
| 370 |
.totem-shell .totem-brand {
|
| 371 |
+
padding: 0;
|
| 372 |
+
margin-bottom: 20px;
|
| 373 |
}
|
| 374 |
|
| 375 |
.totem-shell .totem-brand-img {
|
| 376 |
width: 100%;
|
| 377 |
+
max-width: 256px;
|
| 378 |
height: auto;
|
| 379 |
display: block;
|
| 380 |
+
border-radius: 0;
|
| 381 |
}
|
| 382 |
|
| 383 |
.totem-main {
|
|
|
|
| 768 |
}
|
| 769 |
|
| 770 |
.totem-shell .totem-brand {
|
| 771 |
+
margin-bottom: 20px;
|
|
|
|
| 772 |
}
|
| 773 |
|
| 774 |
.totem-shell .totem-brand-img {
|
| 775 |
width: 100%;
|
| 776 |
+
max-width: 256px;
|
| 777 |
height: auto;
|
| 778 |
display: block;
|
| 779 |
+
border-radius: 0;
|
| 780 |
}
|
| 781 |
|
| 782 |
.totem-hero-bg {
|