Skip to content
Snippets Groups Projects
Commit c2306db0 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

tweak sidebar borders

parent 5f28e8f5
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ export default class CardFilters extends Component { ...@@ -43,7 +43,7 @@ export default class CardFilters extends Component {
<Icon className="float-left" name={'filter'} width={36} height={36}></Icon> <Icon className="float-left" name={'filter'} width={36} height={36}></Icon>
<div className="h3">Filter saved questions</div> <div className="h3">Filter saved questions</div>
</div> </div>
<div className="bordered rounded bg-white"> <div className="rounded bg-white" style={{border: '1px solid #E5E5E5'}}>
<ul className="cursor-pointer"> <ul className="cursor-pointer">
{databases.map(item => {databases.map(item =>
<li key={item.id} className="border-row-divider"> <li key={item.id} className="border-row-divider">
......
...@@ -33,9 +33,9 @@ export default class RecentViews extends Component { ...@@ -33,9 +33,9 @@ export default class RecentViews extends Component {
<Icon className="float-left" name={'clock'} width={18} height={18}></Icon> <Icon className="float-left" name={'clock'} width={18} height={18}></Icon>
<span className="pl1 h3">Recents</span> <span className="pl1 h3">Recents</span>
</div> </div>
<div className="bordered rounded bg-white"> <div className="rounded bg-white" style={{border: '1px solid #E5E5E5'}}>
{recentViews.length > 0 ? {recentViews.length > 0 ?
<ul className="px3 py1"> <ul className="px3 py2">
{recentViews.map(item => {recentViews.map(item =>
<li key={item.id} className="py1 ml1"> <li key={item.id} className="py1 ml1">
<a className="link text-dark" href={Urls.modelToUrl(item.model, item.model_id)}>{item.model_object.name}</a> <a className="link text-dark" href={Urls.modelToUrl(item.model, item.model_id)}>{item.model_object.name}</a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment