Skip to content

Commit 1912d8a

Browse files
committed
minor styling
1 parent ffa43cd commit 1912d8a

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

website/events/walking-together/walking-together.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ body {
4848
z-index: 10;
4949
display: flex;
5050
flex-direction: column;
51+
// always show scrollbar
52+
overflow-y: auto;
5153

5254
.url-list {
5355
flex: 1;

website/events/walking-together/walking-together.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,15 @@ export const URLChat = withSharedState(
170170
}}
171171
>
172172
{data.urls.length > 0 && (
173-
<button onClick={copyToClipboard}>Copy All URLs</button>
173+
<button
174+
style={{
175+
fontSize: "10px",
176+
fontFamily: "monospace",
177+
}}
178+
onClick={copyToClipboard}
179+
>
180+
COPY
181+
</button>
174182
)}
175183
</div>
176184
<div className="url-list" ref={urlListRef}>

0 commit comments

Comments
 (0)