Skip to content

Commit

Permalink
ui: tighten up node list top bar styling
Browse files Browse the repository at this point in the history
This makes the top bar styles on the node list match those of the node map.

Fixes: #23802
Release note: None
  • Loading branch information
couchand committed Mar 20, 2018
1 parent 1e6f834 commit c5527d0
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions pkg/ui/ccl/src/views/clusterviz/containers/map/nodeList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,23 @@ export default class NodeList extends React.Component<RouterState & { router: In

// TODO(vilterp): dedup with ClusterVisualization
return (
<div style={{
width: "100%",
display: "flex",
flexDirection: "column",
overflow: "hidden",
background: "white",
paddingBottom: 24,
}}>
<div
style={{
width: "100%",
display: "flex",
flexDirection: "column",
overflow: "hidden",
background: "white",
paddingBottom: 24,
}}
className="clusterviz"
>
<div style={{
flex: "none",
backgroundColor: "white",
boxShadow: "0 0 4px 0 rgba(0, 0, 0, 0.2)",
zIndex: 5,
padding: "16px 24px",
padding: "4px 12px",
}}>
<div style={{ float: "left" }}>
<Dropdown
Expand Down

0 comments on commit c5527d0

Please sign in to comment.