Some UX changes to eliminate super small previews to larger ones on a bigger desktop viewport.
Ring Dashboard - Larger View for Large Viewports by Devolv
Details
AuthorDevolv
LicenseNo License
Categoryaccount.ring.com
Created
Updated
Size772 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Ring Dashboard - Larger View for Large Viewports
@version 20241104.17.28
@namespace https://userstyles.world/user/Devolv
@description Some UX changes to eliminate super small previews to larger ones on a bigger desktop viewport.
@author Devolv
@license No License
==/UserStyle== */
@-moz-document domain("account.ring.com") {
:root {
--primaryMuted: #01263a;
}
#app_main .cOsOEl {
max-width: 98vw
}
#app_main div[class^='styled__Dashboard'] {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items:start;
}
#app_main div[class^='styled__TilesAnchor'] {
display: none ;
}
@media (min-width: 1200px) {
.lfEdMt {
grid-template-columns: repeat(3, 1fr);
}
}
}