/* 
 * File only used to show/hide various element on desktop applications.
 * Use it whenether you want to. Meant to be use for desktop apps.
 * Don't rename classes as it could break older versions of apps.
 ! Should be the opposite of `hide-mobile.css`
 */

/* App V1 */

.hide-with-cordova {
	display: block !important;
}

.hide-without-cordova {
	display: none !important;
}

/* App V2 */

.hide-with-appv2 {
	display: inherit !important;
}

.hide-without-appv2 {
	display: none !important;
}