diff --git a/BankYouBankrupt/BankYouBankruptCashierApp/Views/Shared/_Layout.cshtml b/BankYouBankrupt/BankYouBankruptCashierApp/Views/Shared/_Layout.cshtml index a7f1f6e..0d8b803 100644 --- a/BankYouBankrupt/BankYouBankruptCashierApp/Views/Shared/_Layout.cshtml +++ b/BankYouBankrupt/BankYouBankruptCashierApp/Views/Shared/_Layout.cshtml @@ -93,6 +93,15 @@ border-top-left-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; + } @@ -127,16 +136,16 @@ @{ if (APICashier.Cashier == null) { -
- Войти - Регистрация -
+
+ Войти + Регистрация +
} else { -
- @APICashier.Cashier.Surname @APICashier.Cashier.Name -
+
+ @APICashier.Cashier.Surname @APICashier.Cashier.Name +
} } diff --git a/BankYouBankrupt/BankYouBankruptClientApp/wwwroot/css/site.css b/BankYouBankrupt/BankYouBankruptClientApp/wwwroot/css/site.css index a22d929..2b6c780 100644 --- a/BankYouBankrupt/BankYouBankruptClientApp/wwwroot/css/site.css +++ b/BankYouBankrupt/BankYouBankruptClientApp/wwwroot/css/site.css @@ -86,4 +86,13 @@ body { margin-bottom: 10px; border-top-left-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 } \ No newline at end of file