Skip to content
Snippets Groups Projects
Commit 1544b6da authored by Allen Gilliland's avatar Allen Gilliland
Browse files

Merge pull request #1149 from metabase/saved_question_listing_fix

Prevent card listing author/date from getting squished
parents 06422725 6b763007
No related branches found
No related tags found
No related merge requests found
......@@ -49,7 +49,7 @@ export default class Cards extends Component {
<a className="link mb2" href={'/card/'+item.id+'?clone'}>{item.name}</a>
<div className="text-grey-3">{item.description || "No description yet"}</div>
</div>
<div className="flex-align-right flex-full text-right text-grey-3">
<div className="flex-align-right flex-no-shrink text-right text-grey-3">
<div>Saved by <span className="text-dark">{item.creator.common_name}</span></div>
<div>Created {item.created_at.fromNow()}</div>
</div>
......
......@@ -12,6 +12,10 @@
flex: 0.5;
}
.flex-no-shrink {
flex-shrink: 0;
}
.align-center {
align-items: center;
}
......
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