Skip to content

Commit cbfd826

Browse files
committed
fix: wrong title in auth pages
1 parent 8865270 commit cbfd826

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/assets/scss/_variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ $theme-colors: (
210210
// scss-docs-end theme-colors-map
211211

212212
// scss-docs-start theme-colors-rgb
213-
$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value") !default !default;
213+
$theme-colors-rgb: map-loop($theme-colors, to-rgb, "$value") !default;
214214
// scss-docs-end theme-colors-rgb
215215

216216
// The contrast ratio to reach against white, to determine if color changes from "light" to "dark". Acceptable values for WCAG 2.0 are 3, 4.5 and 7.

src/auth-forgot-password.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set title = 'Login' %}
1+
{% set title = 'Forgot Password' %}
22

33
{% extends 'src/layouts/auth.html' %}
44
{% block content %}

src/auth-register.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set title = 'Login' %}
1+
{% set title = 'Register' %}
22

33
{% extends 'src/layouts/auth.html' %}
44
{% block content %}

0 commit comments

Comments
 (0)