File tree Expand file tree Collapse file tree 4 files changed +249
-200
lines changed
apps/developer-hub/src/components Expand file tree Collapse file tree 4 files changed +249
-200
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments