Skip to content

Commit 73b7d5e

Browse files
committed
Clean up styles and change mobile room style.
1 parent 39147ac commit 73b7d5e

File tree

2 files changed

+1
-22
lines changed

2 files changed

+1
-22
lines changed

src/components/schedule/break.astro

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,11 @@ const { time, title, style }: Props = Astro.props;
1616

1717
<style>
1818
.break {
19-
/*background: var(--color-session-neutral);*/
20-
/*color: var(--color-text);*/
2119
display: flex;
2220
align-items: center;
2321
text-align: center;
2422
justify-items: center;
25-
/*font-weight: bold;*/
2623
padding-left: 8px;
27-
/*font-size:2rem;*/
2824
background-color: #FCFBFA;
29-
/* color: #fff;*/
30-
/*text-shadow:*/
31-
/* 1px 1px 0 #e3bd97,*/
32-
/*2px 2px 5px #613e1a90;*/
3325
}
3426
</style>

src/components/schedule/session.astro

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ const hasFooter = true;
5353
{session.rooms.length === 1 && (
5454
<div class="room-info">
5555
<span class="sr-only">Room:</span>
56-
{session.rooms && session.rooms.join(", ")}
56+
{session.rooms && session.rooms.join(", ")}
5757
</div>
5858
)}
5959
</header>
@@ -98,7 +98,6 @@ const hasFooter = true;
9898
font-weight: bold;
9999
display: flex;
100100
flex-direction: column;
101-
/*background-color: var(--color-body-background);*/
102101

103102
background-color: color-mix(
104103
in srgb,
@@ -113,10 +112,6 @@ const hasFooter = true;
113112
"time footer";
114113

115114
grid-template-columns: 60px 1fr;
116-
117-
/*@media screen and (min-width: 640px) {*/
118-
/* display: flex;*/
119-
/*}*/
120115
}
121116

122117
.room-info {
@@ -223,33 +218,25 @@ const hasFooter = true;
223218
}
224219

225220
footer.has-speakers {
226-
/*border-top: 1px solid var(--color-text);*/
227221
margin-top: 5px;
228222
}
229223

230224
header {
231-
/*background-color: var(--color-primary);*/
232-
/*border-bottom: 2px solid var(--color-primary);*/
233-
/*background-color: #e6c8ac;*/
234225
text-transform: capitalize;
235226
font-size: 0.8em;
236227
font-weight: 500;
237228
}
238229

239230
.beginner header {
240-
/*background-color: var(--color-session-beginner);*/
241231
}
242232

243233
.intermediate header {
244-
/*background-color: var(--color-session-intermediate);*/
245234
}
246235

247236
.advanced header {
248-
/*background-color: var(--color-session-advanced);*/
249237
}
250238

251239
.poster header {
252240
text-align:center
253-
/*background-color: var(--color-secondary);*/
254241
}
255242
</style>

0 commit comments

Comments
 (0)