Gutenberg table block with Bootstrap .table class

Since my theme did not recognize wp block table class I have added table Sass class from Gutenberg to my theme.

.wp-block-table {
  width: 100%;
  min-width: 240px;
  border-collapse: collapse;
  margin-bottom: 24px;

  td, th {
    padding: .3em;
    border: 1px solid rgba(0, 0, 0, 0.1);
    word-break: break-all;
  }
  th {
    text-align: center;
  }
}