@reference "tailwindcss";

.dashboard {
	.tab {
		@apply font-medium text-gray-100;

		&.active {
			@apply text-black;
		}
	}

	router-outlet {
		+ * {
			@apply absolute bg-white w-full h-full px-2 pb-4;
			flex: 1 1 0;

			@media (min-width: 768px) {
				@apply relative;
			}
		}
	}
}
