Client - add border radius on input and button
This commit is contained in:
		@@ -28,7 +28,7 @@
 | 
			
		||||
    background: var(--alert-background-color);
 | 
			
		||||
    color: var(--alert-color);
 | 
			
		||||
 | 
			
		||||
    border-radius: 4px;
 | 
			
		||||
    border-radius: $border-radius;
 | 
			
		||||
 | 
			
		||||
    margin: $default-margin;
 | 
			
		||||
    padding: $default-padding;
 | 
			
		||||
 
 | 
			
		||||
@@ -21,7 +21,7 @@
 | 
			
		||||
 | 
			
		||||
  .card {
 | 
			
		||||
    border: solid 1px var(--card-border-color);
 | 
			
		||||
    border-radius: 4px;
 | 
			
		||||
    border-radius: $border-radius;
 | 
			
		||||
    margin: $default-margin;
 | 
			
		||||
    padding: $default-padding $default-padding * 2;
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
@@ -24,7 +24,7 @@ a {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
input {
 | 
			
		||||
  border-radius: 0;
 | 
			
		||||
  border-radius: $border-radius;
 | 
			
		||||
  border: solid 1px var(--input-border-color);
 | 
			
		||||
 | 
			
		||||
  &:disabled {
 | 
			
		||||
@@ -40,7 +40,7 @@ label {
 | 
			
		||||
button {
 | 
			
		||||
  background: var(--app-background-color);
 | 
			
		||||
  border: solid 1px var(--app-color);
 | 
			
		||||
  border-radius: 0;
 | 
			
		||||
  border-radius: $border-radius;
 | 
			
		||||
  box-shadow: 2px 2px 2px var(--app-shadow-color);
 | 
			
		||||
  color: var(--app-color);
 | 
			
		||||
  padding: 6px 14px;
 | 
			
		||||
 
 | 
			
		||||
@@ -16,3 +16,5 @@ $app-height: calc(100vh - 130px);
 | 
			
		||||
*/
 | 
			
		||||
$default-padding: 10px;
 | 
			
		||||
$default-margin: $default-padding;
 | 
			
		||||
 | 
			
		||||
$border-radius: 4px;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user