Skip to content

Commit fee1249

Browse files
committed
chore(dev-hub) Page Actions
1 parent ad369cb commit fee1249

File tree

4 files changed

+249
-200
lines changed

4 files changed

+249
-200
lines changed

apps/developer-hub/src/components/LLMShare/index.tsx

Lines changed: 0 additions & 194 deletions
This file was deleted.
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
@use "@pythnetwork/component-library/theme";
2+
3+
.wrapper {
4+
display: flex;
5+
flex-direction: column;
6+
gap: 0;
7+
margin-top: theme.spacing(0);
8+
}
9+
10+
.container {
11+
display: flex;
12+
align-items: center;
13+
gap: 0;
14+
}
15+
16+
.buttonWrapper {
17+
display: flex;
18+
align-items: center;
19+
gap: 0;
20+
}
21+
22+
.button {
23+
border-radius: 0;
24+
25+
&:first-of-type {
26+
border-top-left-radius: theme.border-radius("md");
27+
border-bottom-left-radius: theme.border-radius("md");
28+
}
29+
30+
&:last-of-type {
31+
border-top-right-radius: theme.border-radius("md");
32+
border-bottom-right-radius: theme.border-radius("md");
33+
}
34+
35+
&:not(:last-of-type) {
36+
border-right: none;
37+
}
38+
}
39+
40+
.verticalDivider {
41+
width: 1px;
42+
height: 1.5rem;
43+
background-color: var(--color-fd-border);
44+
flex-shrink: 0;
45+
}
46+
47+
.horizontalDivider {
48+
width: 100%;
49+
height: 1px;
50+
background-color: var(--color-fd-border);
51+
margin-top: theme.spacing(1);
52+
}
53+
54+
.icon {
55+
width: 0.75rem;
56+
height: 0.75rem;
57+
}

0 commit comments

Comments
 (0)