diff options
| author | 2023-02-18 16:47:42 +0100 | |
|---|---|---|
| committer | 2023-02-18 16:47:42 +0100 | |
| commit | 59b2e1078708e212f160c9164a8c623609cdaf39 (patch) | |
| tree | 815980fae68d479c1ec6f4a7e091db6d61703774 /web/source | |
| parent | [chore] update gruf's libs on readme (#1520) (diff) | |
| download | gotosocial-59b2e1078708e212f160c9164a8c623609cdaf39.tar.xz | |
[bugfix] fix oob token route, update templates+css for oob and errors (#1519)
Diffstat (limited to 'web/source')
| -rw-r--r-- | web/source/css/base.css | 19 | 
1 files changed, 10 insertions, 9 deletions
| diff --git a/web/source/css/base.css b/web/source/css/base.css index ca15984e3..d9b3e170e 100644 --- a/web/source/css/base.css +++ b/web/source/css/base.css @@ -277,19 +277,11 @@ section.login {  section.error {  	word-break: break-word; -	display: flex; -	flex-direction: row; -	align-items: center;  	margin-bottom: 0.5rem; -	span { -		font-size: 2em; -	} -  	pre {  		border: 1px solid #ff000080; -		margin-left: 1em; -		padding: 0 0.7em; +		padding: 0.5rem;  		border-radius: 0.5em;  		background-color: #ff000010;  		font-size: 1.3em; @@ -297,6 +289,15 @@ section.error {  	}  } +section.oob-token { +	code { +		background: $gray1; +		padding: 0.5rem; +		margin: 0; +		border-radius: 0.3rem; +	} +} +  .error-text {  	color: $error1;  	background: $error2; | 
