Arcangelo Pisa commited on
Commit
2414775
·
1 Parent(s): 3c8d5e3
Files changed (1) hide show
  1. newsletter_examples/2.html +19 -2
newsletter_examples/2.html CHANGED
@@ -67,10 +67,10 @@
67
  display: flex;
68
  flex-direction: column;
69
  align-items: center;
70
- width: calc(50% - 10px);
71
  margin: 10px 0;
72
  text-align: center;
73
- padding: 20px;
74
  background-color: #F9F9F9;
75
  border-radius: 8px;
76
  border: 1px solid #DDDDDD;
@@ -142,6 +142,14 @@
142
  a:hover {
143
  text-decoration: underline;
144
  }
 
 
 
 
 
 
 
 
145
  </style>
146
  </head>
147
 
@@ -179,6 +187,10 @@
179
  <h3 style="color:black;"> ${transaction_name} </h3>
180
  </div>
181
 
 
 
 
 
182
  <div class="product">
183
  <img src=${recommendation_url} alt="Recommended Product 1">
184
  <h3 style="color:black;">${recommendation_name}</h3>
@@ -193,6 +205,11 @@
193
  <img src=${transaction_url} alt="Previous Product 2">
194
  <h3 style="color:black;">${transaction_name}</h3>
195
  </div>
 
 
 
 
 
196
  <div class="product">
197
  <img src=${recommendation_url} alt="Recommended Product 2">
198
  <h3 style="color:black;">${recommendation_name}</h3>
 
67
  display: flex;
68
  flex-direction: column;
69
  align-items: center;
70
+ width: calc(50% - 50px);
71
  margin: 10px 0;
72
  text-align: center;
73
+ padding: 10px;
74
  background-color: #F9F9F9;
75
  border-radius: 8px;
76
  border: 1px solid #DDDDDD;
 
142
  a:hover {
143
  text-decoration: underline;
144
  }
145
+
146
+ .arrow {
147
+ font-size: 1.5rem;
148
+ color: gray;
149
+ display: flex;
150
+ align-items: center;
151
+ justify-content: center;
152
+ }
153
  </style>
154
  </head>
155
 
 
187
  <h3 style="color:black;"> ${transaction_name} </h3>
188
  </div>
189
 
190
+ <div class="arrow">
191
+ &#8594;
192
+ </div>
193
+
194
  <div class="product">
195
  <img src=${recommendation_url} alt="Recommended Product 1">
196
  <h3 style="color:black;">${recommendation_name}</h3>
 
205
  <img src=${transaction_url} alt="Previous Product 2">
206
  <h3 style="color:black;">${transaction_name}</h3>
207
  </div>
208
+
209
+ <div class="arrow">
210
+ &#8594;
211
+ </div>
212
+
213
  <div class="product">
214
  <img src=${recommendation_url} alt="Recommended Product 2">
215
  <h3 style="color:black;">${recommendation_name}</h3>