Skip to content
Snippets Groups Projects
Commit a8d8fe3d authored by Mihail Hagiu's avatar Mihail Hagiu
Browse files

Merge branch 'HIN-1136' into 'develop'

feat(InviteReviewerEmail): Fixed buttons on small screens

See merge request !167
parents bbbdc0d8 54066104
No related branches found
No related tags found
3 merge requests!176Sprint 24,!171Sprint 24,!167feat(InviteReviewerEmail): Fixed buttons on small screens
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<td width="300.000px" valign="top" style="padding: 0px 0px 0px 0px;border-collapse: collapse;" > <td width="300.000px" valign="top" style="padding: 0px 0px 0px 0px;border-collapse: collapse;" >
<![endif]--> <![endif]-->
<table width="300.000" style="width:300.000px;border-spacing:0;border-collapse:collapse;margin:0px 0px 0px 0px;" <table width="300.000" style="width:'50%';border-spacing:0;border-collapse:collapse;margin:0px 0px 0px 0px;"
cellpadding="0" cellspacing="0" align="left" border="0" bgcolor="" class="column column-0 of-2 cellpadding="0" cellspacing="0" align="left" border="0" bgcolor="" class="column column-0 of-2
empty"> empty">
<tr> <tr>
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
role="module" style="table-layout:fixed" width="100%"> role="module" style="table-layout:fixed" width="100%">
<tbody> <tbody>
<tr> <tr>
<td align="center" class="outer-td" style="padding:0px 0px 0px 50px"> <td align="center" class="outer-td padding-decline">
<table border="0" cellPadding="0" cellSpacing="0" class="button-css__deep-table___2OZyb wrapper-mobile" <table border="0" cellPadding="0" cellSpacing="0" class="button-css__deep-table___2OZyb wrapper-mobile"
style="text-align:center"> style="text-align:center">
<tbody> <tbody>
...@@ -47,7 +47,7 @@ ...@@ -47,7 +47,7 @@
<td width="300.000px" valign="top" style="padding: 0px 0px 0px 0px;border-collapse: collapse;" > <td width="300.000px" valign="top" style="padding: 0px 0px 0px 0px;border-collapse: collapse;" >
<![endif]--> <![endif]-->
<table width="300.000" style="width:300.000px;border-spacing:0;border-collapse:collapse;margin:0px 0px 0px 0px;" <table width="300.000" style="width:'50%';border-spacing:0;border-collapse:collapse;margin:0px 0px 0px 0px;"
cellpadding="0" cellspacing="0" align="left" border="0" bgcolor="" class="column column-1 of-2 cellpadding="0" cellspacing="0" align="left" border="0" bgcolor="" class="column column-1 of-2
empty"> empty">
<tr> <tr>
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
role="module" style="table-layout:fixed" width="100%"> role="module" style="table-layout:fixed" width="100%">
<tbody> <tbody>
<tr> <tr>
<td align="center" class="outer-td" style="padding:0px 50px 0px 0px"> <td align="center" class="outer-td padding-agree">
<table border="0" cellPadding="0" cellSpacing="0" class="button-css__deep-table___2OZyb wrapper-mobile" <table border="0" cellPadding="0" cellSpacing="0" class="button-css__deep-table___2OZyb wrapper-mobile"
style="text-align:center"> style="text-align:center">
<tbody> <tbody>
......
...@@ -76,6 +76,14 @@ ...@@ -76,6 +76,14 @@
text-decoration: none; text-decoration: none;
} }
.padding-decline {
padding:0px 0px 0px 50px;
}
.padding-agree {
padding:0px 50px 0px 0px;
}
@media screen and (max-width:480px) { @media screen and (max-width:480px) {
.preheader .rightColumnContent, .preheader .rightColumnContent,
...@@ -126,6 +134,14 @@ ...@@ -126,6 +134,14 @@
margin-left: 0 !important; margin-left: 0 !important;
margin-right: 0 !important; margin-right: 0 !important;
} }
.padding-decline {
padding: 0px;
}
.padding-agree {
padding: 10px 0px 0px 0px;
}
} }
</style> </style>
<!--user entered Head Start--> <!--user entered Head Start-->
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment