Don't let text zoom
This commit is contained in:
parent
5191c0d9f2
commit
3948eab4e9
1 changed files with 7 additions and 12 deletions
|
@ -527,6 +527,13 @@ fieldset p label input {
|
|||
padding: 1rem;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
|
||||
transform: scale(1);
|
||||
transition: transform ease-in 0.1s;
|
||||
}
|
||||
|
||||
.tile:hover .tile__image {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.tile__image--svg {
|
||||
|
@ -562,18 +569,6 @@ fieldset p label input {
|
|||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.clickable {
|
||||
transform: scale(1);
|
||||
transition: ease-in 0.1s;
|
||||
|
||||
transition-property: transform;
|
||||
}
|
||||
|
||||
.clickable:hover {
|
||||
cursor: pointer;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.split-2 {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
|
|
Loading…
Reference in a new issue