Makes the snapcode picture (from Snapchat "add" page) very large, to make it easier to scan.
Snapchat - Large snapcode on "add" page by denilsonsa
Imported from https://raw.githubusercontent.com/uso-archive/data/flomaster/data/usercss/129624.user.css
Details
Authordenilsonsa
LicensePublic Domain
Categorysnapchat
Created
Updated
Size892 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 Snapchat - Large snapcode on "add" page
@namespace USO Archive
@author denilsonsa
@description Makes the snapcode picture (from Snapchat "add" page) very large, to make it easier to scan.
@version 20240408
@license Public Domain
@preprocessor uso
==/UserStyle== */
@-moz-document regexp("^https?://(www\\.)?snapchat\\.com/add/.*") {
html [class^="PageFrame_desktopContentWrapper"],
html [class^="PageFrame_pageFrame"] {
align-items: stretch;
}
html [class^="DesktopNavigation_navContainer"] {
position: static;
}
html [class^="MediaCard_container"] {
width: auto;
height: auto;
padding: 50px;
}
html [class^="MediaCard_container"] img[class^="Snapcode"] {
width: auto;
height: 75vmin;
max-height: calc(90vh - 72px - 100px);
}
}