x x x
x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTML
<style>
@media only screen and (max-width: 600px) {
	.customCompaniesNumSeats {
    	margin-left: 0px !important;
	}
	.customUsersNumSeats {
    	margin-left: 0px !important;
	}
	.companiesCustomSection {
		flex-direction: row !important;
	}
	.usersCustomSection {
		flex-direction: row !important;
	}
}

@media only screen and (max-width: 860px) {
	.add-and-seats-container {
		justify-content: center !important;
	}
	.default-company-container {
		justify-content: center !important;
	}
	.customUsersNumSeats {
		justify-content: center !important;
	}
	.customCompaniesNumSeats {
    	flex-wrap: wrap !important;
	}
	.customCompaniesNumSeats {
		margin: 0px !important;
	}
	.title-search {
		display: flex;
		flex-direction: column !important;
		flex-wrap: wrap;
		justify-content: center !important;
	}
	.dynamic-title { 
		margin-right: 0px!important;
		text-align: center !important;
	}

}

#list-members-specified-container-default-company-card .custom-card-container {
    margin: 5px;
}

.dynamic-title { 
	margin-right: auto;
	font-size: 18px !important;
	font-weight: 400;
}

.title-search {
	justify-content: space-between;
}

div#ui-tabs-buttons-adminpanel .filled-tab {
    background: var(--primary-color) !important;
}

div#ui-tabs-buttons-adminpanel button {
    font-family: var(--main-font-family) !important;
    background-color: #dbecf1 !important;
    border: unset !important;
    color: black !important;
}

input#search_text-newAdminPanel {border-color: #dbecf1 !important; padding-left: 10px; !important}

</style>
<script>
function myFunc(){
console.log("my function was called!");
}
</script>

...