MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
(Created page with "→‎CSS placed here will be applied to all skins: @media (max-width: 1000px) { #jsd-widget { bottom: 48px !important; } }")
 
No edit summary
Line 2: Line 2:


@media (max-width: 1000px) {
@media (max-width: 1000px) {
#jsd-widget {
.skin-citizen #jsd-widget {
bottom: 48px !important;
bottom: 48px;
}
}
}
}

Revision as of 16:43, 22 February 2023

/* CSS placed here will be applied to all skins */

@media (max-width: 1000px) {
	.skin-citizen #jsd-widget {
		bottom: 48px;
	}
}