1
0
Fork 0
mirror of https://github.com/codex-team/codex.docs.git synced 2025-07-26 00:29:45 +02:00

Add Table Tool (#66)

resolves #58
This commit is contained in:
Taly 2019-03-12 17:24:20 +03:00 committed by GitHub
parent 8412a27690
commit 05d5632e83
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 87 additions and 61 deletions

View file

@ -182,3 +182,21 @@
letter-spacing: 0.2em;
}
}
/**
* Table
* ==================
*/
.block-table {
margin: 20px 0;
table-layout: fixed;
width: 100%;
border-radius: 3px;
border-collapse: collapse;
border: 1px solid var(--color-line-gray);
td {
padding: 8px 10px;
border: 1px solid var(--color-line-gray);
}
}