Removing padding and unnecessary empty spaces in YNAB web interface.
Padding be gone for YNAB by Parsiuk
Details
AuthorParsiuk
LicenseNo License
Categoryynab.com
Created
Updated
Size1.4 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Padding be gone for YNAB
@namespace github.com/openstyles/stylus
@version 0.0.3
@description Removing padding and unnecessary empty spaces in YNAB web interface.
@author Maciej "Parsiuk" Klasa
==/UserStyle== */
@-moz-document domain("ynab.com") {
/* Income Expense report */
.income-expense-table {
width: 1800px;
}
.income-expense-header {
width: 1800px;
}
.income-expense-income {
width: 1800px;
}
.income-expense-expense {
width: 1800px;
}
.income-expense-net-income {
width: 1800px;
}
.income-expense-column {
padding-top: 0px;
padding-bottom: 0px;
height: 16px !important;
font-size: 12px !important;
flex-grow: 1;
}
.income-expense-first-column {
flex-grow: 1;
}
.income-expense-number {
font-size: 12px;
}
.income-expense-table {
width: 100%;
}
/* Account list */
.nav-account-row {
padding-top: 0px;
padding-bottom: 0px;
height: 16px;
}
.ynab-grid-body-row {
padding-top: 0px;
padding-bottom: 0px;
height: 16px;
}
.budget-table-row {
padding-top: 0px;
padding-bottom: 1px;
height: 16px !important;
}
}