Jump to content

This site is currently in alpha, so you will run into rough edges.

Please send feedback or ideas to connect@deeptech.wiki

Template:Stakeholder count widget/styles.css: Difference between revisions

From The Deep Tech Wiki
Created page with "Dashboard layout: .dashboard-widget { display: flex; gap: 1em; flex-wrap: wrap; margin: 1em 0; } Ensure counts look good: .dashboard-tile .count { display: block; font-size: 1.2em; font-weight: 700; margin-top: 4px; }"
 
No edit summary
Line 1: Line 1:
/* Dashboard layout */
/* Dashboard layout */
.dashboard-widget {
.stakeholder-count-widget {
     display: flex;
     display: flex;
     gap: 1em;
     gap: 1em;
Line 8: Line 8:


/* Ensure counts look good */
/* Ensure counts look good */
.dashboard-tile .count {
.stakeholder-count-widget-tile .count {
     display: block;
     display: block;
     font-size: 1.2em;
     font-size: 1.2em;

Revision as of 10:47, 20 November 2025

/* Dashboard layout */
.stakeholder-count-widget {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
    margin: 1em 0;
}

/* Ensure counts look good */
.stakeholder-count-widget-tile .count {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    margin-top: 4px;
}