fix legal page responsiveness
This commit is contained in:
parent
26948e2dc3
commit
6fda2d35b1
2 changed files with 10 additions and 13 deletions
|
@ -4,8 +4,8 @@
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="${description}">
|
||||
<title>Hippoz.</title>
|
||||
<meta name="description" content="Hippoz Privacy Policy">
|
||||
<title>Hippoz Privacy Policy</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
|
||||
|
|
|
@ -29,13 +29,9 @@
|
|||
--small: 0.8rem;
|
||||
}
|
||||
|
||||
html {
|
||||
font-size: 100%;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
font-size: clamp(1rem, 1vw, 1.3rem);
|
||||
font-size: 100%;
|
||||
font-family: "Manrope", Arial, Helvetica, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
@ -50,12 +46,14 @@ a {
|
|||
color: var(--accent);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.main-container {
|
||||
width: 55%;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-top: 28px;
|
||||
margin-bottom: 28px;
|
||||
width: clamp(200px, 100vw, 1000px);
|
||||
margin: 28px auto;
|
||||
padding: 36px;
|
||||
}
|
||||
|
||||
.branding-container {
|
||||
|
@ -95,7 +93,6 @@ h3,
|
|||
h4,
|
||||
h5 {
|
||||
margin: 3rem 0 1.38rem;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
font-weight: 400;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue