mirror of
				https://github.com/XRPLF/xrpl-dev-portal.git
				synced 2025-11-04 11:55:50 +00:00 
			
		
		
		
	- Move docs graphics to appropriate place - Fix spacing of header anchors - Fix display of card grids in md - Fix display of badges - Fix theme-aware diagram coloring - Fix left table columns being line-broken too aggressively
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
/* TABLE STYLING */
 | 
						|
 | 
						|
article table {
 | 
						|
  clear: right;
 | 
						|
  margin-bottom: 48px;
 | 
						|
 | 
						|
  code {
 | 
						|
    word-break: normal;
 | 
						|
    white-space: nowrap;
 | 
						|
    overflow-wrap: normal;
 | 
						|
  }
 | 
						|
 | 
						|
  th {
 | 
						|
    border-bottom: 2px solid $gray-200;
 | 
						|
  }
 | 
						|
  tr {
 | 
						|
    border-bottom: 1px solid $gray-200;
 | 
						|
  }
 | 
						|
 | 
						|
  th, td {
 | 
						|
    padding: 0.2em;
 | 
						|
    vertical-align: text-top;
 | 
						|
  }
 | 
						|
 | 
						|
  td:nth-child(1) {
 | 
						|
    font-weight: bold;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
.landing-table {
 | 
						|
  th, tr {
 | 
						|
    border-bottom: 2px solid $gray-600;
 | 
						|
  }
 | 
						|
  td {
 | 
						|
    width: 33.33%;
 | 
						|
    padding: 16px 40px 16px 0;
 | 
						|
    &:nth-child(1){
 | 
						|
      font-weight: normal;
 | 
						|
    }
 | 
						|
    @include media-breakpoint-down(sm) {
 | 
						|
      font-size: 0.875rem;
 | 
						|
    }
 | 
						|
  }
 | 
						|
  tr:last-child {
 | 
						|
    border-bottom: none;
 | 
						|
  }
 | 
						|
  tbody td {
 | 
						|
    color: $gray-200;
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
.dblue {
 | 
						|
  color: $gray-600;
 | 
						|
}
 | 
						|
#overview-table {
 | 
						|
  td:nth-child(1){
 | 
						|
    width: 40%;
 | 
						|
  }
 | 
						|
  td:nth-child(2){
 | 
						|
    width: 30%;
 | 
						|
  }
 | 
						|
  tbody td {
 | 
						|
    padding: 2rem 0.75rem;
 | 
						|
  }
 | 
						|
  @include media-breakpoint-down(md) {
 | 
						|
    font-size: 0.875rem;
 | 
						|
    thead .h4 {
 | 
						|
      font-size: 1.125rem;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |