Skip to content

Commit a25a419

Browse files
authored
Merge pull request #257 from bettistein/Dropbown
VersionSelect Dropdown Design Alignment
2 parents 860970f + ca76e9c commit a25a419

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/components/VersionSelect.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/VersionSelect.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ let make = (~onChange, ~version: string, ~availableVersions: array<(string, stri
66
<option className="py-4" key=ver value=ver> {React.string(label)} </option>
77
})
88
<select
9-
className="text-14 border border-fire text-fire inline-block rounded px-4 py-1 font-semibold "
9+
className="text-12 border border-gray-10 text-gray-80 inline-block rounded px-4 py-1 font-semibold "
1010
name="versionSelection"
1111
value=version
1212
onChange>

src/layouts/SidebarLayout.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/layouts/SidebarLayout.res

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ module Sidebar = {
139139
id="sidebar"
140140
className={(
141141
isOpen ? "fixed w-full left-0 h-full z-20 min-w-320" : "hidden "
142-
) ++ " md:block md:w-48 md:-ml-4 lg:w-1/5 md:h-auto md:relative overflow-y-visible bg-white md:relative"}>
142+
) ++ " md:block md:w-48 md:-ml-4 lg:w-1/5 md:h-auto md:relative overflow-y-visible bg-white"}>
143143
<aside
144144
id="sidebar-content"
145145
className="relative top-0 px-4 w-full block md:top-16 md:pt-16 md:sticky border-r border-gray-5 overflow-y-auto scrolling-touch pb-24"
@@ -176,7 +176,7 @@ module Sidebar = {
176176
module BreadCrumbs = {
177177
@react.component
178178
let make = (~crumbs: list<Url.breadcrumb>) =>
179-
<div className="w-full font-medium overflow-x-auto text-14 text-gray-60">
179+
<div className="w-full font-medium overflow-x-auto text-12 text-gray-60">
180180
{Belt.List.mapWithIndex(crumbs, (i, crumb) => {
181181
let item = if i === Belt.List.length(crumbs) - 1 {
182182
<span key={Belt.Int.toString(i)}> {React.string(crumb.name)} </span>

0 commit comments

Comments
 (0)