fix-response-width (#1054)
This commit is contained in:
parent
e9a1a2e5be
commit
b8be664809
|
@ -169,13 +169,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&__reopen-closeticket-buttons {
|
&__reopen-closeticket-buttons {
|
||||||
width: 230px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
&__response {
|
&__response {
|
||||||
|
width: 100%;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
@ -222,9 +222,6 @@
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// &__delete-button {
|
|
||||||
// }
|
|
||||||
|
|
||||||
@media screen and (max-width: 1151px) {
|
@media screen and (max-width: 1151px) {
|
||||||
.ticket-viewer__info {
|
.ticket-viewer__info {
|
||||||
&-container {
|
&-container {
|
||||||
|
|
|
@ -49,7 +49,7 @@ class LoginController extends Controller {
|
||||||
|
|
||||||
public function handler() {
|
public function handler() {
|
||||||
$this->clearOldRememberTokens();
|
$this->clearOldRememberTokens();
|
||||||
|
|
||||||
if ($this->checkInputCredentials() || $this->checkRememberToken()) {
|
if ($this->checkInputCredentials() || $this->checkRememberToken()) {
|
||||||
if($this->userInstance->verificationToken !== null) {
|
if($this->userInstance->verificationToken !== null) {
|
||||||
throw new RequestException(ERRORS::UNVERIFIED_USER);
|
throw new RequestException(ERRORS::UNVERIFIED_USER);
|
||||||
|
|
Loading…
Reference in New Issue