@@ -158,7 +158,7 @@ export default define.page<typeof handler>(function DocsPage(props) {
158158 < div class = "flex mx-auto max-w-screen-2xl px-0 md:px-4 md:py-0 justify-start bg-background-secondary" >
159159 < label
160160 for = "docs_sidebar"
161- class = "px-4 py-3 lg:hidden flex items-center rounded gap-2 cursor-pointer"
161+ class = "px-4 py-3 lg:hidden flex items-center rounded-sm gap-2 cursor-pointer"
162162 >
163163 < svg
164164 class = "h-6 w-6"
@@ -204,7 +204,7 @@ export default define.page<typeof handler>(function DocsPage(props) {
204204 < div class = "lg:order-1 min-w-0 max-w-3xl w-full" >
205205 { isCanary
206206 ? (
207- < div class = "bg-[#F0900525] p-4 rounded text-base text-yellow-700 dark:text-yellow-500 mb-8" >
207+ < div class = "bg-[#F0900525] p-4 rounded-sm text-base text-yellow-700 dark:text-yellow-500 mb-8" >
208208 🚧 This documentation is work in progress and for an
209209 unreleased version of Fresh.
210210 </ div >
@@ -231,7 +231,7 @@ export default define.page<typeof handler>(function DocsPage(props) {
231231 < div class = "px-4 md:px-0 flex justify-between my-6" >
232232 < a
233233 href = { `https://github.com/denoland/fresh/edit/main/${ page . file } ` }
234- class = "text-gray-700 dark:text-gray-200 text-md flex items-center bg-[#ebedf0] dark:bg-[#2c2d39] px-4 py-2 rounded hover:bg-gray-200 dark:hover:bg-[#36394c] transition-colors"
234+ class = "text-gray-700 dark:text-gray-200 text-md flex items-center bg-[#ebedf0] dark:bg-[#2c2d39] px-4 py-2 rounded-sm hover:bg-gray-200 dark:hover:bg-[#36394c] transition-colors"
235235 target = "_blank"
236236 rel = "noopener noreferrer"
237237 >
@@ -303,7 +303,7 @@ function ForwardBackButtons(props: {
303303 ? (
304304 < a
305305 href = { prev . href }
306- class = "px-4 py-2 text-left rounded border border-foreground-secondary/20 grid border-solid w-full hover:border-green-600 transition-colors"
306+ class = "px-4 py-2 text-left rounded-sm border border-foreground-secondary/20 grid border-solid w-full hover:border-green-600 transition-colors"
307307 >
308308 < span class = "text-sm text-gray-600 dark:text-gray-500" >
309309 Previous page
@@ -318,7 +318,7 @@ function ForwardBackButtons(props: {
318318 ? (
319319 < a
320320 href = { next . href }
321- class = "px-4 py-2 text-left rounded border border-foreground-secondary/20 grid border-solid w-full hover:border-green-600 transition-colors"
321+ class = "px-4 py-2 text-left rounded-sm border border-foreground-secondary/20 grid border-solid w-full hover:border-green-600 transition-colors"
322322 >
323323 < span class = "text-sm text-gray-600 dark:text-gray-500" >
324324 Next page
0 commit comments