File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
src/components/MdComponents Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export const Paragraph = (props: ChildOnlyProp) => (
106
106
)
107
107
108
108
export const HR = ( ) => (
109
- < hr className = "mb-4 mt-8 inline-block w-full bg-[#e5e5e5] opacity-60 dark:bg-[#333] " />
109
+ < hr className = "mb-4 mt-8 inline-block w-full border-body-medium opacity-60" />
110
110
)
111
111
112
112
// All base html element components
@@ -150,17 +150,14 @@ export const Title = (props: ChildOnlyProp) => (
150
150
151
151
export const ContentContainer = ( props : Pick < BoxProps , "id" | "children" > ) => {
152
152
return (
153
- < MainArticle
154
- className = "relative flex-[1_1_992px] px-8 pb-8 [&_.citation_p]:text-[#666] dark:[&_.citation_p]:text-[#080808]"
155
- { ...props }
156
- />
153
+ < MainArticle className = "relative flex-[1_1_992px] px-8 pb-8" { ...props } />
157
154
)
158
155
}
159
156
160
157
export const MobileButton = ( props : ChildOnlyProp ) => {
161
158
return (
162
159
< div
163
- className = "sticky bottom-0 z-sticky w-full bg-background p-8 shadow-[0_-1px_0_#e5e5e5] lg:hidden dark:shadow-[0_-1px_0_#333] "
160
+ className = "sticky bottom-0 z-sticky w-full bg-background p-8 shadow-md lg:hidden"
164
161
{ ...props }
165
162
/>
166
163
)
You can’t perform that action at this time.
0 commit comments