42 lines
840 B
SCSS
42 lines
840 B
SCSS
.my{
|
|
margin-top: 20px;
|
|
|
|
.page-section{
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.meetupCard {
|
|
display: flex;
|
|
flex-direction: row;
|
|
.right {
|
|
// background-color: yellow;
|
|
width: 100%;
|
|
margin-left: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
.down {
|
|
width: 200px;
|
|
// background-color: aqua;
|
|
position: relative;
|
|
bottom: 10px;
|
|
right: -120px;
|
|
// display: flex;
|
|
// flex-direction: column-reverse;
|
|
// justify-content:flex-end
|
|
// position: relative;
|
|
.submitBtn {
|
|
// width: 200px;
|
|
// position: absolute;
|
|
// right: 0px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.indexTablebar {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
} |