File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed
Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ export default function CopyPageContent(): JSX.Element {
138138
139139 return (
140140 < button
141- className = { styles . copyButton }
141+ className = { ` ${ styles . copyButton } copy-button` }
142142 onClick = { copyToClipboard }
143143 title = { copied ? 'Copied!' : 'Copy page content' }
144144 aria-label = { copied ? 'Page content copied to clipboard' : 'Copy page content to clipboard' }
@@ -151,7 +151,6 @@ export default function CopyPageContent(): JSX.Element {
151151 ) : (
152152 < >
153153 < FaCopy className = { styles . icon } />
154- < span > Copy Page</ span >
155154 </ >
156155 ) }
157156 </ button >
Original file line number Diff line number Diff line change @@ -2050,14 +2050,23 @@ html {
20502050 }
20512051}
20522052
2053- /* Breadcrumbs styling */
2054- .theme-doc-breadcrumbs {
2053+ .copy-button {
2054+ margin-top : -1rem !important ;
2055+ }
2056+
2057+ .breadcrumbs {
20552058 margin-bottom : 1rem ;
2059+ margin-left : 1.5rem ;
20562060 font-size : 0.875rem ;
2061+ display : flex;
2062+ align-items : center;
2063+ justify-items : center;
2064+ width : 100%
20572065}
20582066
20592067.breadcrumbs__item {
20602068 color : hsl (var (--muted-foreground ));
2069+
20612070}
20622071
20632072.breadcrumbs__link {
You can’t perform that action at this time.
0 commit comments