I am currently working on a Chrome extension and using Bootstrap 5 with Sass to style its popup. However, I have encountered an issue where the border of the popup does not extend to the bottom as expected. What could be causing this problem?
popup.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Title</title>
<link rel="stylesheet" href="./styles/popup.css">
</head>
<body>
<div id="container">
<button id="startBtn" class="btn btn-success btn-lg" style="display: inline;">Connect</button>
<button id="createRoomBtn" class="btn btn-primary" style="display: none;">Create Room</button>
<button id="enterRoomBtn" class="btn btn-secondary" style="display: none;">Enter Room</button>
</div>
<script src="./popup.js"></script>
</body>
</html>
popup.scss
$primary: teal;
$secondary: #68217A;
@import "bootstrap/scss/bootstrap";
html
{
//Reset
margin: 0;
padding: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
width: 276px;
height: 376px;
border: 1px solid lightgrey;
}
body {
display: flex;
height: 100%;
width: 100%;
margin-top: 15%;
flex-direction: row;
justify-content: center;
background-color: #212121;
color: white;
}
Here is an image demonstrating the issue:
I have attempted various troubleshooting steps such as resetting CSS properties, moving the border declaration, setting zero margins, but unfortunately, none of these solutions have worked so far.