We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffa43cd commit 1912d8aCopy full SHA for 1912d8a
2 files changed
website/events/walking-together/walking-together.scss
@@ -48,6 +48,8 @@ body {
48
z-index: 10;
49
display: flex;
50
flex-direction: column;
51
+ // always show scrollbar
52
+ overflow-y: auto;
53
54
.url-list {
55
flex: 1;
website/events/walking-together/walking-together.tsx
@@ -170,7 +170,15 @@ export const URLChat = withSharedState(
170
}}
171
>
172
{data.urls.length > 0 && (
173
- <button onClick={copyToClipboard}>Copy All URLs</button>
+ <button
174
+ style={{
175
+ fontSize: "10px",
176
+ fontFamily: "monospace",
177
+ }}
178
+ onClick={copyToClipboard}
179
+ >
180
+ COPY
181
+ </button>
182
)}
183
</div>
184
<div className="url-list" ref={urlListRef}>
0 commit comments