Skip to content
Snippets Groups Projects
Commit cad45f57 authored by Nicolas Giard's avatar Nicolas Giard
Browse files

fix: tables styling

parent a1c3d633
No related branches found
No related tags found
No related merge requests found
......@@ -146,6 +146,10 @@ .contents {
border-radius: .5rem;
margin: 1rem;
> p:first-child .emoji {
margin-right: .5rem;
}
&.is-info {
background-color: mc('blue', '50');
background-image: radial-gradient(ellipse at top, mc('blue', '50'), lighten(mc('blue', '50'), 5%));
......@@ -333,4 +337,29 @@ .contents {
}
}
// ---------------------------------
// TABLES
// ---------------------------------
table {
margin: .5rem 1.75rem;
border-spacing: 0;
th {
padding: .75rem;
border-bottom: 2px solid mc('grey', '500');
color: mc('grey', '600');
}
td {
padding: .75rem;
}
tr {
td {
border-bottom: 1px solid mc('grey', '200');
}
}
}
}
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