Skip to content

Commit

Permalink
Merge branch 'master' into production
Browse files Browse the repository at this point in the history
  • Loading branch information
aled committed Jul 24, 2024
2 parents bdb230b + 2025a15 commit d3b5c45
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Fakemail.Core/Adler32.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Fakemail.Core
/// Copied from https://raw.githubusercontent.com/icsharpcode/SharpZipLib/master/src/ICSharpCode.SharpZipLib/Checksum/Adler32.cs
/// (MIT license)
/// </summary>

[System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE0054:Use compound assignment")]
public sealed class Adler32
{
Expand Down
1 change: 0 additions & 1 deletion Fakemail.Services/DeliveryAgent.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Collections.Concurrent;
using System.Linq.Expressions;

using Fakemail.ApiModels;
using Fakemail.Core;
Expand Down
2 changes: 1 addition & 1 deletion Fakemail.Web/Views/Home/User.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Password: <span class="sourcecode copyable-text" data-bs-toggle="tooltip" data-b
}
function UpdateTable(isOneOff) {
var nextUpdate = 60000;
var nextUpdate = 10000;
fetch("@Model.UserId/smtpuser/@Model.SmtpCredentials.First().SmtpUsername/update/" + sequenceNumber, {
method: 'GET'
Expand Down
18 changes: 9 additions & 9 deletions Fakemail.Web/wwwroot/css/site.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
html {
font-size: 14px;
font-size: 14px;
}

@media (min-width: 768px) {
html {
font-size: 16px;
}
html {
font-size: 16px;
}
}

html {
position: relative;
min-height: 100%;
position: relative;
min-height: 100%;
}

body {
Expand All @@ -30,6 +30,6 @@ body {
transition: box-shadow 0.3s ease-in-out; /* Smooth transition for the outline */
}

.copyable-text:hover {
box-shadow: 0 0 0 2px #607b7f; /* Blue outline */
}
.copyable-text:hover {
box-shadow: 0 0 0 2px #607b7f; /* Blue outline */
}

0 comments on commit d3b5c45

Please sign in to comment.