52 lines
863 B
SCSS
52 lines
863 B
SCSS
$minHeight : calc(100vh - 80px); //80px is height of the title div container
|
|
|
|
|
|
.IntentList{
|
|
width: 30%;
|
|
min-height:$minHeight;
|
|
float:left;
|
|
background-color: #eff0f0;
|
|
}
|
|
|
|
.IntentList-title{
|
|
font-size: 1.5em;
|
|
height: 70px;
|
|
padding: 20px;
|
|
text-align:left;
|
|
background-color: #eff0f0;
|
|
}
|
|
|
|
.AddIntent{
|
|
float: right;
|
|
margin: 12px;
|
|
}
|
|
|
|
.LaunchRequestButton{
|
|
text-align: left;
|
|
width: 100%;
|
|
height: 50px;
|
|
background-color: #d8d8d8
|
|
}
|
|
|
|
.LaunchRequestButton-selected{
|
|
text-align: left;
|
|
width: 100%;
|
|
height: 50px;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.ContactButton{
|
|
text-align: left;
|
|
color: #009b8a;
|
|
width: 100%;
|
|
height: 50px;
|
|
background-color: #d8d8d8
|
|
}
|
|
|
|
.ContactButton-selected{
|
|
text-align: left;
|
|
color: #009b8a;
|
|
width: 100%;
|
|
height: 50px;
|
|
background-color: #f5f5f5;
|
|
} |