25 lines
622 B
PHP
25 lines
622 B
PHP
<!DOCTYPE html>
|
|
<html lang="en" class="bg-slate-900">
|
|
<head>
|
|
@vite(['resources/css/app.css','resources/js/app.js'])
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>NCORE - Dashboard</title>
|
|
<style>
|
|
@media (max-width: 768px) {
|
|
.col-1 {
|
|
width: 50px;
|
|
}
|
|
.col-2 {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
@media (min-width: 769px) {
|
|
.col-1 {
|
|
width: 92px;
|
|
}
|
|
.col-2 {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head> |