Skip to content

Commit 2101939

Browse files
committed
Fixed mobile view
1 parent 9fdecb2 commit 2101939

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

index.html

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
justify-content: center;
2929
align-items: center;
3030
flex: 1;
31+
padding: 2em;
3132
}
3233
.logo-container {
3334
margin-top: 7em;
@@ -38,7 +39,7 @@
3839
}
3940
.logo {
4041
max-width: 15em;
41-
height: auto;
42+
max-height: 15em;
4243
}
4344
.logo-text {
4445
font-weight: bold;
@@ -79,6 +80,22 @@
7980
margin-bottom: 3em; /* Adjust margin as needed */
8081
}
8182
}
83+
@media (max-width: 480px) {
84+
p {
85+
font-size: 1.2em;
86+
}
87+
.logo-text {
88+
font-size: 4em;
89+
}
90+
.logo {
91+
max-width: 10em;
92+
max-height: 10em;
93+
}
94+
.btn img {
95+
width: 40px;
96+
height: 40px;
97+
}
98+
}
8299
</style>
83100
</head>
84101
<body>
@@ -107,8 +124,5 @@
107124
A Python library to debug binary executables, your own way.
108125
</p>
109126
</div>
110-
111-
<!-- Bootstrap JS -->
112-
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
113127
</body>
114128
</html>

0 commit comments

Comments
 (0)