Hey guys, do you know a way to use a monospaced font on Tables (Grid Views)? It makes things clear since the whole text will align.
Solved
Monospaced font on Tables (Grid view)
Best answer by Andy_Lin1
You can use an extension like Stylus for Chrome or Firefox to apply custom CSS rules to Airtable, such as this:
.gridView .dataRow [data-columntype] {
font-family: Roboto Mono, Consolas, Andale Mono, Courier New, monospace;
}
Note that you can modify the selector to only apply the font to certain column types, e.g. instead of [data-column type]
, use [data-columntype="url"]
to just target URLs.
You can also modify the selector to use [data-columnid]
to target particular fields, but you’ll need to use DevTools (or a script) to find the field IDs.
Reply
Rich Text Editor, editor1
Editor toolbars
Press ALT 0 for help
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.