Skip to content

Commit

Permalink
css pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
ntnhan90 committed Nov 7, 2023
1 parent 8f7af49 commit 5a0c16d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
13 changes: 9 additions & 4 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ body {
padding: var(--padding-3xs) var(--padding-lg);
gap: var(--gap-5xs);
font-size: var(--text-lg-semibold-size);
color: var(--icterine-500);
color: #fff;
}
.login-button a{
.login-button:hover{
color: var(--icterine-500);
}

Expand Down Expand Up @@ -631,7 +631,7 @@ a:hover{
padding: var(--padding-21xl) var(--padding-13xl);
height: fit-content;
}
.rating-review-card:hover{
.rating-review-card:hover,.paginator-arrow:hover,.paginator-arrow-next:hover{
cursor: pointer;
}
.rating-review-card:active{
Expand Down Expand Up @@ -1165,7 +1165,12 @@ a:hover{
font-size: var(--text-sm-semibold-size);
color: var(--icterine-500);
}

.button49:disabled{
cursor: not-allowed;
}
.button49:disabled .text75{
color: #fff;
}
.hint-text7 {
align-self: stretch;
position: relative;
Expand Down
2 changes: 1 addition & 1 deletion components/page-intro/testimonial2.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ const Test = () => {
</div>

<div className="pagination"/>
<div className="paginator-arrow">
<div className="paginator-arrow-next">
<img className="small-icon"
alt=""
src="/images/chevronright.svg"
Expand Down
2 changes: 1 addition & 1 deletion pages/login/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { useState } from "react";


function ActiveStepFormComponent() {
const [step,setStep] = useState<number>(2);
const [step,setStep] = useState<number>(1);
const [phone,setPhone] = useState<string>("");
const [height,setHeight] = useState<number>(0);
const [weight,setWeight] = useState<number>(0);
Expand Down

0 comments on commit 5a0c16d

Please sign in to comment.