forked from enviPath/enviPy
Compare commits
1 Commits
fix/ketche
...
hotfix/log
| Author | SHA1 | Date | |
|---|---|---|---|
| f99564cdc2 |
@ -3,12 +3,31 @@
|
|||||||
{% block title %}enviPath - Sign In{% endblock %}
|
{% block title %}enviPath - Sign In{% endblock %}
|
||||||
|
|
||||||
{% block extra_styles %}
|
{% block extra_styles %}
|
||||||
/* Tab styling */ .tab-content { display: none; } .tab-content.active {
|
<style>
|
||||||
display: block; } input[type="radio"].tab-radio { display: none; } .tab-label
|
/* Tab styling */
|
||||||
{ cursor: pointer; padding: 0.75rem 1.5rem; border-bottom: 2px solid
|
.tab-content {
|
||||||
transparent; transition: all 0.3s ease; } .tab-label:hover { background-color:
|
display: none;
|
||||||
rgba(0, 0, 0, 0.05); } input[type="radio"].tab-radio:checked + .tab-label {
|
}
|
||||||
border-bottom-color: #3b82f6; font-weight: 600; }
|
.tab-content.active {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
input[type="radio"].tab-radio {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.tab-label {
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 0.75rem 1.5rem;
|
||||||
|
border-bottom: 2px solid transparent;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
.tab-label:hover {
|
||||||
|
background-color: rgba(0, 0, 0, 0.05);
|
||||||
|
}
|
||||||
|
input[type="radio"].tab-radio:checked + .tab-label {
|
||||||
|
border-bottom-color: #3b82f6;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|||||||
@ -18,6 +18,8 @@
|
|||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
type="text/css"
|
type="text/css"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
{% block extra_styles %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
<body class="bg-base-100">
|
<body class="bg-base-100">
|
||||||
<div class="flex h-screen">
|
<div class="flex h-screen">
|
||||||
|
|||||||
Reference in New Issue
Block a user