Tables (feat Егор)

This commit is contained in:
shadowik 2023-05-20 05:20:48 +04:00
parent 277bc87ff7
commit 66d3fae262
2 changed files with 25 additions and 7 deletions

View File

@ -93,6 +93,15 @@
border-top-left-radius: 0; border-top-left-radius: 0;
border-top-right-radius: 0; border-top-right-radius: 0;
} }
table.table tbody tr td,
table.table thead tr th,
table.table thead {
border-left: solid;
border-right: solid;
border-width: 4px;
border-color: #FFFFFF;
}
</style> </style>
</head> </head>
<body class="MyBody"> <body class="MyBody">
@ -127,16 +136,16 @@
@{ @{
if (APICashier.Cashier == null) if (APICashier.Cashier == null)
{ {
<div class="col-md-3 text-end"> <div class="col-md-3 text-end">
<a class="btn btn-warning me-2" asp-controller="Home" asp-action="Login">Войти</a> <a class="btn btn-warning me-2" asp-controller="Home" asp-action="Login">Войти</a>
<a class="btn btn-warning" asp-controller="Home" asp-action="Register">Регистрация</a> <a class="btn btn-warning" asp-controller="Home" asp-action="Register">Регистрация</a>
</div> </div>
} }
else else
{ {
<div class="col-md-3 text-end"> <div class="col-md-3 text-end">
<a class="btn btn-warning me-2" id="exit" name="exit" asp-controller="Home" asp-action="Privacy">@APICashier.Cashier.Surname @APICashier.Cashier.Name</a> <a class="btn btn-warning me-2" id="exit" name="exit" asp-controller="Home" asp-action="Privacy">@APICashier.Cashier.Surname @APICashier.Cashier.Name</a>
</div> </div>
} }
} }
</header> </header>

View File

@ -86,4 +86,13 @@ body {
margin-bottom: 10px; margin-bottom: 10px;
border-top-left-radius: 0; border-top-left-radius: 0;
border-top-right-radius: 0; border-top-right-radius: 0;
}
table.table tbody tr td,
table.table thead tr th,
table.table thead {
border-left: solid;
border-right: solid;
border-width: 4px;
border-color: #ffc107
} }