Fixed backend URL | Some features
This commit is contained in:
@@ -131,6 +131,7 @@
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
align-items: center;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
}
|
||||
@@ -156,24 +157,26 @@
|
||||
.subscription-cards {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
margin-top: 18px;
|
||||
margin-top: 48px;
|
||||
}
|
||||
|
||||
.subscription-card {
|
||||
background-color: #242424;
|
||||
background-color: #474747;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
min-width: 260px;
|
||||
max-width: 300px;
|
||||
border-radius: 8px;
|
||||
width: 220px;
|
||||
border-radius: 18px;
|
||||
box-shadow: #0000002d 2px 2px 5px;
|
||||
h1 {
|
||||
font-weight: 200;
|
||||
font-weight: 500;
|
||||
margin-left: 8px;
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
h2 {
|
||||
font-weight: 300;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 400;
|
||||
font-size: 1.1rem;
|
||||
color: #c0c0c0;
|
||||
}
|
||||
p {
|
||||
@@ -181,6 +184,25 @@
|
||||
font-size: 14px;
|
||||
padding-left: 16px;
|
||||
padding-right: 16px;
|
||||
color: #838383;
|
||||
color: $secondary-color;
|
||||
}
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
|
||||
.subscription-card:hover {
|
||||
cursor: pointer;
|
||||
background-color: #575757;
|
||||
}
|
||||
|
||||
.subscription-desc {
|
||||
background-color: #333333;
|
||||
height: 100px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.subscription-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user