Here is my site https://zootechdrum.github.io/FaceOff_Visulals/
On IOS devices i get a nice padding on the bottom of the cards. However on android devices I get no such padding. the padding does not seem to show on chrome dev tools.
I have cleared all history and cleared the cache just to make sure that google wasn’t rendering an old version of the site. Any idea on how to combat this issue.
Here is my meta tag
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!--Interprets the markup based on the browser specified in the content tag-->
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!--Font Awesome API-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/png" href="img/faceIcon.png">
<title>Face Off Visuals</title>
</head>
here is my scss code for the card
.card {
height: 35rem;
background-color: $white-color;
padding: 3rem;
display: inline-block;
&__heading {
font-size:3.0rem;
text-align:center;
background-color: $black_color;
color: $white-color;
}
&__details {
padding: 2rem;
ul{
list-style: none;
width:80%;
margin: 0 auto;
padding: 0;
li{
font-weight:700;
text-align:center;
font-size:2.0rem;
padding:2rem;
&:not(:last-child) {
border-bottom: 1px solid $black_color;
}
}
}
}
}